file_text_eof

This function returns true when the end of a given opened text file has been reached or false if not.

 

Syntax:

file_text_eof(fileid);

ArgumentTypeDescription
fileidText File IDThe id of the file to check.

 

Returns:

Boolean

 

Example:

var num = 0;
var file = file_text_open_read(working_directory + "Game_Data.txt");
while (!file_text_eof(file))
{
    str[num++] = file_text_readln(file);
}
file_text_close(file);

The above code opens a file for writing then loops through the lines of text already written to the file until it reaches the end, storing each line in the array "str".