Programming Reference Manual
 
Syntax
 
FClose handle%
 
Description
Closes a file, opened with the Fast I/O function FOpen, where handle% is the filenumber, returned by FOpen.
 
Parameter
Description
handle%
A handle to the previously opened file.
See Also
Example
 
Sub Main
Dim Hnd%
Hnd% = FOpen(“C:\AUTOEXEC.BAT”, 0, 4)
'read-only, shared
FSeek Hnd%, 0 'begin of file
While Not FEof(Hnd%)
Debug.Print FLInput(Hnd%)
Wend
FClose Hnd%
End Sub