fsFileCreate (Function) |
Top Previous Next |
This function will create a new file and return a FILE descriptor (ID) for the new file. When the function returns, it is necessary to verify that the file has been successfully created with the fsFileStatus function. The data pointer used when reading and writing data to the file will be initialized to point at the beginning of the file.
Note: if a file with the name already exists, it will be overwritten without warning; use fsFileExists to check if the file already exists.
Input: name : STRING Name of the file to create. Both absolute and relative paths are allowed.
Returns: FILE FILE descriptor. Use the fsFileStatus to verify the operation.
Declaration: FUNCTION fsFileCreate : FILE;
Example: ... |