FSave Statement

Description
This saves the force data in the main memory in the current robot file.

Usage
FSave FileName_sValue$

  • FileName_sValue$
    The character string specifying the file name in the force data storage destination.

Detailed Explanation
This saves the force data in the main memory in the current robot file. The extension is fixed to “.frc”. If the extension is omitted, “.frc” will be added. The file name must be alphanumeric characters and the underscore character only, and can be up to 255 characters. You cannot specify the path. If the force data has not already been saved previously, it will be added to the current robot project.

Frequent Errors
The specified file is not the current robot file
When a force file from a different robot is specified in FileName_sValue$, an error occurs.

The path is specified in the specified file name
When the path is included in FileName_sValue$, an error occurs. Be sure to specify the file name only.

File name error
An error is generated when a space or invalid character is contained in FileName_sValue$.

Usage Example
This example saves the force file.

> FSave "myforce.frc"

See Also
FLoad