Append
(boolean) Whether to append the string to the end of the text file:
VALUE DESCRIPTION |
|
true |
Append the string to the end of the text file. (The text file must exist.) |
false |
Overwrite the current contents of the text file. (Default) |
Re t u r n s
Nothing. You can use Application.GetLastError to determine whether this action failed, and why.
See also: Related Actions
TextFile.WriteFromTable
OverviewExamples
TextFile.WriteFromTable ( string Filename,
table Table,
boolean Append = false )
De s cr ip t ion
Writes a table's contents out to a text file. The table should consist of one line of text per table item.
P arame t er s
Filename
(string) The full path to the text file.
Note: If the file does not exist, it will be created.