<data_save> Save textual data to file.


Command Tree:   File  \  Save Data
.
Syntax:   <data_save>("Text", "File", "Mode")
Text
Text to be saved (or variable containing text to be saved).
File
Full path to the file with data (e.g., "c:\mydocuments\data.txt").
Mode
Can be one of the following values:
"A" - the data will be appended to the end of the file
"" - (empty) the data will be written to the begin of the file
.
.
Example:   <#> This macro adds date to the end of the file.
<#>
<commands_only_on>

<varchng>("vFile","SF","")
<varset>("vData=_vKeyReturn","")
<varchng>("vData","A","_vCurrDate_MMDDYYYY")
<data_save>("vData","vFile","A")