FileIsEOF
Method Signature
FileIsEOF(file=[any])Arguments
Argument
Type
Required
Description
Default
Examples
Simple usage syntax
fileObj = fileOpen(expandPath('./file.txt');
isEndOfFile = fileIsEOF(fileObj);Using fileIsEOF to loop over all lines of a text file
// Error handling omitted for clarity.
// open a file for reading
fileObj = fileOpen( expandPath( "./file.txt" ), "read" );
// read each line until we read the end of the file.
// fileIsEOF(fileObj) == false until we've read in the last line.
while (!fileIsEOF( fileObj )) {
lineContent = fileReadLine( fileObj );
// do something with content of each line
}
// end of file reached, close the file handle
fileClose( fileObj );
Additional Examples
Related
Last updated
Was this helpful?
