Changeset 531 for trunk/ab5.0/ablib/src/Classes/System/IO/Directory.ab
- Timestamp:
- Jun 29, 2008, 11:42:27 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/ablib/src/Classes/System/IO/Directory.ab
r431 r531 185 185 @return ファイルやディレクトリのパス文字列が列挙された配列 186 186 */ 187 Static Function GetFileSystemEnt ies(path As String) As List<String>188 Return GetFileSystemEnt ies(path, "?*")187 Static Function GetFileSystemEntries(path As String) As List<String> 188 Return GetFileSystemEntries(path, "?*") 189 189 End Function 190 190 … … 195 195 @return ファイルやディレクトリのパス文字列が列挙された配列 196 196 */ 197 Static Function GetFileSystemEnt ies(path As String, searchPattern As String) As List<String>197 Static Function GetFileSystemEntries(path As String, searchPattern As String) As List<String> 198 198 Dim info = New DirectoryInfo(path) 199 199 Dim infos = info.GetFileSystemInfos(searchPattern) As List<FileSystemInfo>
Note: See TracChangeset
for help on using the changeset viewer.