Please enable JavaScript to view this site.

IDS peak 2.15.0 / uEye+ firmware 3.54

Executes the operation selected by FileOperationSelector on the file selected by FileSelector.

Name

FileOperationExecute[FileSelector][FileOperationSelector]

Category

FileAccessControl

Interface

Command

Access

Write

Unit

-

Visibility

Guru

Values

-

Standard

SFNC

Availability uEye+

icon-gev icon-u3v

Availability uEye

icon-ui-gige icon-ui-usb2 icon-ui-usb3

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<peak.core.nodes.CommandNode>("FileOperationExecute").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<peak.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()