Ignore:
Timestamp:
Jun 29, 2008, 11:42:27 AM (16 years ago)
Author:
OverTaker
Message:

String.Split,Joinメソッド実装

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/ablib/src/Classes/System/IO/Directory.ab

    r431 r531  
    185185    @return ファイルやディレクトリのパス文字列が列挙された配列
    186186    */
    187     Static Function GetFileSystemEnties(path As String) As List<String>
    188         Return GetFileSystemEnties(path, "?*")
     187    Static Function GetFileSystemEntries(path As String) As List<String>
     188        Return GetFileSystemEntries(path, "?*")
    189189    End Function
    190190
     
    195195    @return ファイルやディレクトリのパス文字列が列挙された配列
    196196    */
    197     Static Function GetFileSystemEnties(path As String, searchPattern As String) As List<String>
     197    Static Function GetFileSystemEntries(path As String, searchPattern As String) As List<String>
    198198        Dim info = New DirectoryInfo(path)
    199199        Dim infos = info.GetFileSystemInfos(searchPattern) As List<FileSystemInfo>
Note: See TracChangeset for help on using the changeset viewer.