System.IO

Description

System Wide Functions

Functions

NameSignature and Synopsis
fileClosevoid fileClose(String fileName)
Close the specified file fileName that was previously opened by System.fileWrite() or System.fileOpen().
fileWritevoid fileWrite (String fileName, String str, boolean append, boolean flush)
Write the data in str to the specified file. The file is opened / created automatically if necessary. Append and flush are only used to open / create the file and are ignored if the file is already opened.