Skip to content

File operation Functions

Julius Paffrath edited this page Sep 11, 2018 · 1 revision

readFile(STRING)

Reads the content of a given file name and returns it as a string.

writeFile(STRING:STRING)

Writes a string to a given file name. If the file does not exists, it will be created. Returns TRUE if the write operation was successful.

appendToFile(STRING:STRING)

Appends a string to a given file name. If the file does not exists, this function will fail. Returns TRUE if the write operation was successful.