| Name | Signature and Synopsis |
|---|---|
fileClose | void fileClose(String fileName)Close the specified file fileName that was previously
opened by System.fileWrite() or System.fileOpen(). |
fileWrite | void 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. |