IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Saves the RemoteDevice description file (xml file) to the root of the current user's home directory. The name is taken from the URL string. The original file format (xml/zip) is retained.
•The function saves only the first announced "local" storage file. •If the implementation fails to determine the home directory, the function tries to save the file to the application's working directory. |
Name |
DeviceSaveRemoteDescriptionFileToDisk |
Category |
|
Interface |
Command |
Access |
Write |
Unit |
- |
Visibility |
Expert |
Values |
- |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
|
Code Example
C++
// Execute DeviceSaveRemoteDescriptionFileToDisk
nodeMapLocalDevice->FindNode<peak::core::nodes::CommandNode>("DeviceSaveRemoteDescriptionFileToDisk")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapLocalDevice->FindNode<peak::core::nodes::CommandNode>("DeviceSaveRemoteDescriptionFileToDisk")->WaitUntilDone();
C#
// Execute DeviceSaveRemoteDescriptionFileToDisk
nodeMapLocalDevice.FindNode<peak.core.nodes.CommandNode>("DeviceSaveRemoteDescriptionFileToDisk").Execute();
// Check if the command has finished before you continue (optional)
nodeMapLocalDevice.FindNode<peak.core.nodes.CommandNode>("DeviceSaveRemoteDescriptionFileToDisk").WaitUntilDone();
Python
# Execute DeviceSaveRemoteDescriptionFileToDisk
nodeMapLocalDevice.FindNode("DeviceSaveRemoteDescriptionFileToDisk").Execute()
# Check if the command has finished before you continue (optional)
nodeMapLocalDevice.FindNode("DeviceSaveRemoteDescriptionFileToDisk").WaitUntilDone()