Reads the characters in a file until reaching request_length of characters read. Reads until a new line or end of file if request_length is not provided.
This function writes output to a file using the printfformat_string capabilities. The first argument is a fileID returned from an earlier call to fopen.
Updates a file name from oldname to newname. Returns 0 if successful and non-zero otherwise. An optional output argument, errormessage, can be used to retrieve any additional system error messages on failure.
fflush
Flush buffered output to fileID to be written the file.
fgetl
Reads the characters in a file until reaching request_length of characters read. Reads until a new line or end of file if request_length is not provided.
fgets
Reads the characters in a file until hitting len of characters read, a new line or end of file if len is not provided.
fileparts
Returns the directory, name, and extension components of the file filepath.
fopen
Opens a file, filename, for read/write operations.
fprintf
This function writes output to a file using the printfformat_string capabilities. The first argument is a fileID returned from an earlier call to fopen.
fread
Reads the binary data of the precision type from the file fileID.
frewind
Moves the file pointer to the beginning of the file fileID. Returns 0 on success.
fscanf
Returns result R after reading a formatted data from file handle, f, specified by template t.
fseek
Sets the file pointer to a position in fileID. Returns 0 if successful; returns -1 if unsuccessful.
ftell
Returns the current position of the file pointer.
fullfile
Returns a filename from dir1...dirN and filename fname.
rename
Updates a file name from oldname to newname. Returns 0 if successful and non-zero otherwise. An optional output argument, errormessage, can be used to retrieve any additional system error messages on failure.