int CloseFile (int fileHandle);
Closes the file associated with fileHandle. Call OpenFile to obtain a file handle.
Input | ||
Name | Type | Description |
fileHandle | integer | Specifies the file to close. This is the value that OpenFile originally returned. |
Name | Type | Description |
status | integer | Result of the close file operation. If this value is –1, an error occurred. You can use GetFmtIOError to get more information about the type of error that occurred. Any value other than –1 indicates the function completed successfully. |