Owning Class: support
Requires: MathScript RT Module
c = feof(fid)
Determines whether the file mark reaches the end of the file.
| Name | Description |
|---|---|
| fid | Specifies the identifier for the file. Use the fopen function to open a file and assign it an identifier. fid is an integer. |
| Name | Description |
|---|---|
| c | Returns 1 if the file mark reaches the end of the file. Otherwise, this function returns 0. c is a Boolean value. |
fid = fopen('Test.txt', 'w');
fprintf(fid, 'LabVIEW\nMathScript\n');
fclose(fid);
fid = fopen('Test.txt');
while(~feof(fid))
s = fgetline(fid)
end
fclose(fid);