Difference between revisions of "FileDelete"

From MultiCharts
Jump to navigation Jump to search
m
 
Line 7: Line 7:
  
 
:'''PathFilename''' - a string expression specifying the path and filename of the file to be deleted.
 
:'''PathFilename''' - a string expression specifying the path and filename of the file to be deleted.
 +
 +
== Notes ==
 +
* Use [[FileAppend]] to create a text file.
  
 
== Example ==
 
== Example ==

Latest revision as of 15:01, 19 February 2012

Deletes the specified file.

Usage

FileDelete("PathFilename")

Where:

PathFilename - a string expression specifying the path and filename of the file to be deleted.

Notes

Example

FileDelete("C:\test.txt");

Will delete the file test.txt in the root directory of the C: hard drive.