Inhaltsverzeichnis

SaveFile

Stores the value in a file, with the parameters:

The length of the written file in bytes is returned.

Syntax:

SaveFile ( string fileName, string content, bool overwrite, bool base64Decode )

Example

SaveFile("D:\temp\MyDoc.txt", "The text in the file")
SaveFile("D:\temp\MyDoc.pdf", $Base64Content, true(), true())
SaveFile("D:\temp\MyDoc.pdf", LoadFile("D:\temp\MyInputDoc.pdf", true()), true(), true())