Programming Reference Manual
 
Syntax
 
FEof(handle%)
 
Description
Returns True if the filepointer of the file, opened with FOpen under handle%, is at the end of the file.
 
Parameter
Description
handle%
A handle to the file, previously opened with the FOpen instruction.
See Also
Example
 
Sub Main
s$ = “c”
i# = DiskFree(s$)
MsgBox “Free disk space on drive '” & _
s$ & “’ is: “ & i#
End Sub