I’m trying to write a file from the flexpendant SDk 6.06 to the controller of the robot.
This works only for a virtual controller, for a real controller this is the error message:
if you write a file with the FlexPendant -SDK the file is located on the local filesystem (Memory) of the Flexpendant.
As soon as you have completed the writing of the file, you have to copy the file onto the robot controller by using the method “PutFile”)
Example:
//copy the log file to the selected folder
_abbCtrl.FileSystem.PutFile(strTempFile, _saveFileDialog.FileName);
If you want to read the data of a file which is located on the robot controller you have to copy the file to the local filesystem (Method GetFile) before you can read the data.
The reading and writing on a VC is working because you are the same storage device