IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Executes the operation selected by FileOperationSelector on the file selected by FileSelector.
Name |
FileOperationExecute[FileSelector][FileOperationSelector] |
Category |
|
Interface |
Command |
Access |
Write |
Unit |
- |
Visibility |
Guru |
Values |
- |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
|
Code example
C++
// Execute FileOperationExecute
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("FileOperationExecute")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("FileOperationExecute")->WaitUntilDone();
C#
// Execute FileOperationExecute
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("FileOperationExecute").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.CommandNode>("FileOperationExecute").WaitUntilDone();
Python
# Execute FileOperationExecute
nodeMapRemoteDevice.FindNode("FileOperationExecute").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("FileOperationExecute").WaitUntilDone()