Concludes input/output (I/O) to a file opened using the FileOpen function.
Public Sub FileClose(ParamArray FileNumbers() As Integer)
Exception type | Error number | Condition |
---|---|---|
52 | FileNumber does not exist. |
If you omit FileNumbers(), all active files opened by the FileOpen function are closed.
When you close files that were opened for Output or Append, the final buffer of output is written to the operating system buffer for that file. All buffer space associated with the closed file is released.
When the FileClose function is executed, the association of a file with its file number ends.
This example uses the FileClose function to close a file opened for Input.
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 Immediate window. LoopFileClose(
1)
' Close file.
End Statement | FileOpen Function | Reset Function | Stop Statement |