Close | Closes the file. |
Copy | Copies an existing file to a new file. |
CreateDirectory | Creates a new directory. |
Delete | Deletes the specified file. |
Exists | Returns True if the specified file exists; False, otherwise. |
FindFiles | Returns the names of all files in a specified directory that meet the specified criteria. |
Move | Moves an existing file from one location to another. |
Open | Opens the specified file. |
Read | Reads the specified number of characters from the file. |
ReadByte | Reads a byte value from the file. |
ReadDouble | Reads a double value from the file. |
ReadFloat | Reads a float value from the file. |
ReadLine | Reads a line of data from the file up to, but not including, the newline character. |
ReadLong | Reads a long value from the file. |
ReadShort | Reads a short value from the file. |
RemoveDirectory | Removes an existing empty directory. |
Write | The Write method syntax has the following object qualifier and arguments: |
WriteByte | Writes a byte value to the file. |
WriteDouble | Writes a double value to the file. |
WriteFloat | Writes a float value to the file. |
WriteLine | Writes an optional string and newline character to the file. |
WriteLong | Writes a long value to the file. |
WriteShort | Writes a short value to the file. |
BigEndian | Returns or sets a flag that determines if encoding for the unicode format is in the big endian byte order. |
CodePage | Returns or sets the codepage of the file. |
EOF | Returns True if an EOF marker is encountered; False otherwise. |
Handle | Returns the Windows handle of the file. |
IsOpen | Returns True if the file is open; False otherwise. |
LOF | Returns the size of the file in bytes. |
Seek | Returns or sets the current read/write position within the file. |