System.IO.fileClose()

Signature

void fileClose(String fileName)

Domain

action

Description

Close the specified file fileName that was previously opened by System.fileWrite() or System.fileOpen().

Parameters

NameTypeDescription
fileNameStringThe name of the file for closing.

Returns

None.

Cautions

none

See Also

fileWrite

Example


System.IO.fileWrite ("c:/tmp/test.out", "This is a test write", false, true);

System.IO.fileClose ("c:/tmp/test.out");