|
WriteTextFile() 
Save the contents of a string or list of strings
to a disk file.
Syntax
WriteTextFile(<cFilename>, <xText>)
--> lSuccess
Arguments
<cFilename> --> Is the name of the file
to save to disk. The file path should be included with the file
name.
<xText> --> This may be either a
character string or an array list of character strings.
Returns
TRUE is returned if the file was successfully
created, otherwise FALSE is returned.
Description
This function is used to save the contents of a
string or array to a disk file. The file is created if it does not
exist and overwritten if it already exists.
____________________________
Related Topics
Business
Function List
ReadTextFile()
|