![]() | Download Help (Windows Only) |
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. |
The following table lists the support characteristics of this function.
Supported in the LabVIEW Run-Time Engine | Yes |
Supported on RT targets | Yes |
Suitable for bounded execution times on RT | Not characterized |
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);
Helpful
Not Helpful