saveTextFile

Revision as of 05:05, 2 December 2020 by Mex (talk | contribs)

Function Server and Client icon-iii.png icon-vc.png icon-sa.png icon-iv.png Online and Offline

Available since Server 1.0.0, Client 1.0.0

null saveTextFile(string filePath, string text)

The saveTextFile function is used to set all text inside a file to.
The text may contain new-line character(s).
The text stored is either up to text's string length or first null-byte (\0) character, whichever occurs first.
This function internally opens, writes, and closes the file.
The file is internally opened in text-mode, not binary-mode.
The file is internally opened in write-mode, not read-mode.

Parameters

1) string filePath The path to the file.
2) string text The text to set the content of the file to.

Return

null This function doesn't return a value.

Notes

There aren't any notes for this function.

Examples

There aren't any examples for this function.

Compatibility

There isn't any compatibility information for this function.

Related

Server Related

        createFile
        fileExists
        loadTextFile
        openFile
        saveTextFile


Client Related

        createFile
        fileExists
        loadTextFile
        openFile
        saveTextFile