File_AppendToFile
Description
Appends a string to a file
Syntax
File_AppendToFile(sFile, sInsertString) As Boolean
Parameters
sFile (String)
Filename
sInsertString (String)
String to append to file
Example
VBScript
If bStatus Then bStatus = File_AppendToFile("C:\Temp\Test.txt", "Is the truth out there?")