| 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: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows Seven