(Formerly known as FileClose, which is now obsolete)
File.Close()
Closes the file, and commits all changes to disk.
You must call this function when you have finished reading/writing the file.
Example:
File *output = File.Open("test.dat", eFileWrite);
output.WriteString("test string");
output.Close();
will open the file test.dat, write the string "test string", and close it.
See Also: File.Open
|