+1 888 340 6572

FileAppend: Difference between revisions

From MultiCharts
No edit summary
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
Appends the specified string expression to the end of the specified ASCII file; if the specified file does not exist, the file will be created.   
Appends the specified string expression to the end of the specified ASCII file; if the specified file does not exist, the file will be created.   


==== Usage ====
== Usage ==
<syntaxhighlight>FileAppend("PathFilename","StringExpression")</syntaxhighlight>  
<syntaxhighlight>FileAppend("PathFilename", "StringExpression")</syntaxhighlight>  


Where: [[PathFilename]]  - a string expression specifying the path and filename
Where:  
 
:'''PathFilename''' - a string expression specifying the path and filename,
              
              
[[StringExpression]]  - the string expression to be appended to a file  
:'''StringExpression''' - the string expression to be appended to a file.
==== Example ====
<syntaxhighlight>FileAppend("C:\test.txt","Appended Text");  will append the string expression "Appended Text"
to the end of the test.txt file in the root directory of the C: hard drive</syntaxhighlight>
 


== Notes ==
* Use [[FileDelete]] to delete files.
   
   
== Example ==
<syntaxhighlight>FileAppend("C:\test.txt","Appended Text");</syntaxhighlight>
Will append the string expression "Appended Text" to the end of the test.txt file in the root directory of the C: hard drive.


[[Category:Output]]
[[Category:Output]]

Latest revision as of 15:01, 19 February 2012

Appends the specified string expression to the end of the specified ASCII file; if the specified file does not exist, the file will be created.

Usage

FileAppend("PathFilename", "StringExpression")

Where:

PathFilename - a string expression specifying the path and filename,
StringExpression - the string expression to be appended to a file.

Notes

Example

FileAppend("C:\test.txt","Appended Text");

Will append the string expression "Appended Text" to the end of the test.txt file in the root directory of the C: hard drive.