Pascal Scripting: SaveStringsToUTF8FileWithoutBOM

Prototype:

function SaveStringsToUTF8FileWithoutBOM(const FileName: String; const S: TArrayOfString; const Append: Boolean): Boolean;

Description:

Saves the specified string array to the specified file with UTF-8 encoding without a BOM. If Append is True and the specified file already exists, it will be appended to instead of overwritten. Returns True if successful, False otherwise.

See also:

SaveStringsToFile
SaveStringsToUTF8File