Description
Reads a line of text from an open file until it reaches the end of the line (\n or \r\n).
Parameters
Return Type
String
Example
Example 1
use "file"; int fid = fileOpen("C:\alphabet.txt"); runnerLog(fileReadLine(fid)); close(fid);
Returns: ABCDEFGHIJKLMNOPQRSTUVWXYZ
See also