Click or drag to resize

ControllerFileSystem Property

Gets the FileSystem class of the controller.

Namespace:  ABB.Robotics.Controllers
Assembly:  ABB.Robotics.Controllers (in ABB.Robotics.Controllers.dll) Version: 6.5.129.0
Syntax
C#
public FileSystem FileSystem { get; }

Return Value

Type: FileSystem
A FileSystem reference that can be used to access objects in the FileSystem domain in the controller.
Exceptions
ExceptionCondition
GeneralExceptionA General Exception has occurred.
Examples
This example uses the FileSystem property of the Controller class to get current RemoteDirectory.
// Create a Controller instance
Controller c = new Controller();

// Get reference to FileSystem domain and remote directory
string stRemoteDir = c.FileSystem.RemoteDirectory;
See Also