Changeset 105
- Timestamp:
- Feb 17, 2007, 6:38:05 PM (18 years ago)
- Location:
- Include/Classes/System/IO
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Include/Classes/System/IO/File.ab
r101 r105 179 179 End Function 180 180 181 Static Function ReadAllText( path As String, encoding As Encoding ) As String182 ' TODO: 実装 183 End Function 181 /* Static Function ReadAllText( path As String, encoding As Encoding ) As String 182 ' TODO: 実装 183 End Function */ 184 184 185 185 Static Sub Replace( sourceFileName As String, destinationFileName As String, destinationBackupFileName As String ) … … 191 191 End Sub 192 192 193 Static Sub SetAccessControl( path As String, fileSecurity As FileSecurity )194 ' TODO: 実装 195 End Sub 193 /* Static Sub SetAccessControl( path As String, fileSecurity As FileSecurity ) 194 ' TODO: 実装 195 End Sub */ 196 196 197 197 Static Sub SetAttributes( path As String, fileAttributes As FileAttributes ) … … 207 207 End Sub 208 208 209 Static Sub SetCreationTimeUtc( path As String, creationTimeUtc As DateTime )210 ' TODO: 実装211 End Sub212 213 209 Static Sub SetLastAccessTime( path As String, lastAccessTime As DateTime ) 214 210 ' TODO: 実装 … … 243 239 End Sub 244 240 245 Static Sub WriteAllText( path As String, contents As String, encoding As Enconding )246 ' TODO: 実装 247 End Sub 241 /* Static Sub WriteAllText( path As String, contents As String, encoding As Enconding ) 242 ' TODO: 実装 243 End Sub */ 248 244 249 245 End Class -
Include/Classes/System/IO/FileStream.ab
r69 r105 1 ' TODO: 実装 1 Class FileStream 2 ' TODO: 実装 3 End Class -
Include/Classes/System/IO/FileSystemInfo.ab
r84 r105 12 12 Select Case m_FileAttributes 13 13 Case FILE_ATTRIBUTE_ARCHIVE 14 Return Archive14 Return FileAttributes.Archive 15 15 Case FILE_ATTRIBUTE_COMPRESSED 16 Return Compressed16 Return FileAttributes.Compressed 17 17 Case FILE_ATTRIBUTE_DIRECTORY 18 Return Directory18 Return FileAttributes.Directory 19 19 Case FILE_ATTRIBUTE_ENCRYPTED 20 Return Encrypted20 Return FileAttributes.Encrypted 21 21 Case FILE_ATTRIBUTE_HIDDEN 22 Return Hidden22 Return FileAttributes.Hidden 23 23 Case FILE_ATTRIBUTE_NORMAL 24 Return Normal24 Return FileAttributes.Normal 25 25 Case FILE_ATTRIBUTE_OFFLINE 26 Return Offline26 Return FileAttributes.Offline 27 27 Case FILE_ATTRIBUTE_READONLY 28 Return ReadOnly28 Return FileAttributes.ReadOnly 29 29 Case FILE_ATTRIBUTE_REPARSE_POINT 30 Return ReparsePoint30 Return FileAttributes.ReparsePoint 31 31 Case FILE_ATTRIBUTE_SPARSE_FILE 32 Return SparseFile32 Return FileAttributes.SparseFile 33 33 Case FILE_ATTRIBUTE_SYSTEM 34 Return System34 Return FileAttributes.System 35 35 Case FILE_ATTRIBUTE_TEMPORARY 36 Return Temporary36 Return FileAttributes.Temporary 37 37 Case Else 38 38 'Exception … … 45 45 Dim attributes As DWord 46 46 Select Case value 47 Case Archive47 Case FileAttributes.Archive 48 48 attributes = FILE_ATTRIBUTE_ARCHIVE 49 Case Compressed49 Case FileAttributes.Compressed 50 50 attributes = FILE_ATTRIBUTE_COMPRESSED 51 Case Directory51 Case FileAttributes.Directory 52 52 attributes = FILE_ATTRIBUTE_DIRECTORY 53 Case Hidden53 Case FileAttributes.Hidden 54 54 attributes = FILE_ATTRIBUTE_HIDDEN 55 Case Normal55 Case FileAttributes.Normal 56 56 attributes = FILE_ATTRIBUTE_NORMAL 57 Case Offline57 Case FileAttributes.Offline 58 58 attributes = FILE_ATTRIBUTE_OFFLINE 59 Case ReadOnly59 Case FileAttributes.ReadOnly 60 60 attributes = FILE_ATTRIBUTE_READONLY 61 Case System61 Case FileAttributes.System 62 62 attributes = FILE_ATTRIBUTE_SYSTEM 63 Case Temporary63 Case FileAttributes.Temporary 64 64 attributes = FILE_ATTRIBUTE_TEMPORARY 65 65 Case Else -
Include/Classes/System/IO/StreamReader.ab
r69 r105 1 ' TODO: 実装 1 Class StreamReader 2 ' TODO: 実装 3 End Class -
Include/Classes/System/IO/StreamWriter.ab
r69 r105 1 ' TODO: 実装 1 Class StreamWriter 2 ' TODO: 実装 3 End Class
Note:
See TracChangeset
for help on using the changeset viewer.