Returns a Boolean value True when the end of a file opened for Random or sequential Input has been reached.
Public Function EOF(ByVal FileNumber As Integer) As Boolean
Exception type | Error number | Condition |
---|---|---|
52 | FileNumber does not exist. | |
54 | File mode is invalid. |
Use EOF to avoid the error generated by attempting to get input past the end of a file.
The EOF function returns False until the end of the file has been reached. With files opened for Random or Binary access, EOF returns False until the last executed FileGet function is unable to read an entire record.
With files opened for Binary access, an attempt to read through the file using the Input function until EOF returns True generates an error. Use the LOF and Loc functions instead of EOF when reading binary files with Input, or use Get when using the EOF function. With files opened for Output, EOF always returns True.
This example uses the EOF function to detect the end of a file. This example assumes that TESTFILE
is a text file with a few lines of text.
Dim TextLine As String FileOpen(1, "TESTFILE", OpenMode.Input) ' Open file. Do While Not EOF(1) ' Loop until end of file. TextLine = LineInput(1) ' Read line into variable. Debug.WriteLine(TextLine) ' Print to the Command window. Loop FileClose(1) ' Close file.
FileGet Function | Loc Function | LOF Function | FileOpen Function |