Close Statement

Description

Concludes input/output (I/O) to a file opened using the Open statement.

Syntax

Close [filenumberlist]

The filenumberlist argument can be one or more file numbers using the following syntax, where filenumber is any valid file number:

[[#]filenumber][, [#]filenumber] . . .

Remarks

If you omit filenumberlist, all active files opened by the Open statement 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 Close statement is executed, the association of a file with its file number ends.

See Also

End Statement, Open Statement, Reset Statement, Stop Statement.

Example

This example uses the Close statement to close all three files opened for Output.


For I = 1 To 3    ' Loop 3 times.
    FileName = "TEST" & I    ' Create filename.
    Open FileName For Output As #I    ' Open file.
    Print #I, "This is a test."    ' Write string to file.I    ' Close all 3 open files.