File

From MultiCharts
Revision as of 15:02, 19 February 2012 by JoshM (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Used in Print statements to specify an ASCII file as the output location; must precede the expressions to be printed and be followed by a comma.

If the specified file does not exist, the file will be created.

Usage

File("PathFilename")

Where:

PathFilename - a string expression specifying the path and filename.

Notes

Example

Print(File("C:\test.txt"), CurrentDate, CurrentTime);

Will save the output of CurrentDate and CurrentTime to the test.txt file in the root directory of the C: drive.