|
ReadData
|
Read data from
the file into a byte array.
|
|
ReadDataToString
|
Read data from
the file into a string.
|
|
WriteData
|
Writes binary
data to the file.
|
|
ReadString
|
Reads single line from the ASCII
file.
|
|
WriteString
|
Writes ASCII text from string to the
file.
|
|
EOF
|
Checks if the end of the file has been
reached.
|
|
CloseFile
|
Closes the file.
|
|
CreateDir
|
Create the directory indicated by
dirname.
|
|
RemoveDir
|
Remove the directory indicated by
dirname.
|
|
ChangeDir
|
Changes the current working directory
to directory indicated by dirname.
|
|
GetCurrentDir
|
Returns the current working
directory.
|
|
IsFileExist
|
Checks if the
file exists.
|
|
FileSize
|
Returns the size of the file in
bytes.
|
|
CopyFile
|
Copies an existing file to a new
file.
|
|
MoveFile
|
Moves (renames) an existing file
to a new file.
|
|
RemoveFile
|
Removes the file indicated by
filename.
|
|
Seek
|
Permits random access to a file's contents by moving
the pointer a specified amount, absolutely or relatively.
|
|
SeekToBegin
|
Repositions the pointer to the beginning of the
file.
|
|
SeekToEnd
|
Repositions the pointer to the end of the file.
|
|
ListFiles
|
Searches for a file(s) according to the specified wildcard
mask. |
|
CountFilesInFolder
|
Counts files in the folder according to the specified wildcard
mask. |