Purpose
Writes binary or text data to a file on the FCAS computer.
If the file has not been opened for writing with the OpenFile method, Write will display an error.
Syntax
File.Write (Data [, Integer | Long])
The Integer and Long parameters let you write single-binary bytes, including zero bytes, into a file.
Example
MyFile.Write ("This string is written into the file")
|