TIBCO BusinessEvents™
Standard
System
IO
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
Name
Type
Description
fileName
String
The 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");