| ZennoLab.Macros Assembly > ZennoLab.Macros Namespace > FileSystem Class : FileAppendString Method |
Type: System.String
Path to the file.
Type: System.String
Text to append.
Type: System.Boolean
true if append text in a new line; otherwise, false.
Type: System.String
Path to the file.
Type: System.String
Text to append.
Type: System.Boolean
true if append text in a new line; otherwise, false.
string path = {pathToFile}; string text = "it is new line in the file!"; bool appendNewLine = true; FileSystem.FileAppendString(path, text, appendNewLine);
$path = {pathToFile}; $text = "it is new line in the file!"; $appendNewLine = true; FileSystem::FileAppendString($path, $text, $appendNewLine);
Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.