FExport Statement
Description
This exports the force file to the specified path.
Usage
FExport Filename_sValue$, DestPath_sValue$
FileName_sValue$
A string value defining the specific file you wish to export. The file extension is “.frc”. You cannot specify the path.DestPath_sValue$
A string value defining the destination path and file. The file extension is “.frc”.
Detailed Explanation
This makes a copy of the specified force file in the destination folder.
If a file with the same name exists in the folder, it will be overwritten.
The file name must be alphanumeric characters and the underscore character only, and can be up to 255 characters.
Frequent Errors
Specified destination folder does not exist
When the path of DestPath_sValue$ does not exist, an error is generated.
Specified file is not found
When the path is included in FileName_sValue$, an error is generated.
Usage Example
This is an example of exporting a project file to a separate folder.
> FExport "myforce.frc", "C:\temp\myforce.frc"
See Also
FImport, FLoad, FSave