Topics   All   MacOS (Only)   Windows (Only)   Linux (Only, Not)   iOS (Only, Not)  
Components   Crossplatform Mac & Win   Server   Client   Old   Deprecated   Guides   Examples   Videos
New in version: 12.2   12.3   12.4   12.5   13.0   13.1   13.2   13.3   13.4   13.5    Statistic    FMM    Blog  

BinaryFile.EOF

Queries whether we are at the end of the current file.

Component Version macOS Windows Linux Server iOS SDK
BinaryFile 7.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "BinaryFile.EOF"; BinaryFileRef )   More

Parameters

Parameter Description Example
BinaryFileRef The reference number for the open file. $FH

Result

Returns 1, 0 or error.

Description

Queries whether we are at the end of the current file.
Returns 1 if we are at the end or 0 if not.

Examples

Try EOF:

Set Variable [ $fh ; Value: MBS( "BinaryFile.Open"; "/Users/cs/Desktop/test.txt" ) ]
# Check End Of File usage
Set Variable [ $r ; Value: MBS( "BinaryFile.EOF"; $fh) ]
# Read a lot of data
Set Variable [ $data ; Value: MBS( "BinaryFile.ReadText"; $fh; 10000000; "Latin1") ]
# Check End Of File usage
Set Variable [ $r ; Value: MBS( "BinaryFile.EOF"; $fh) ]
Set Variable [ $r ; Value: MBS( "BinaryFile.Close"; $fh) ]

See also

This function is free to use.

Created 12nd June 2017, last changed 12nd June 2017


BinaryFile.Create - BinaryFile.Length

💬 Ask a question or report a problem