Discuss this help topic in SecureBlackbox Forum

TElCustomFileSystemAdapter.BasePath

TElCustomFileSystemAdapter     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This property specifies base path for all file operations.

Declaration

[C#]
    string BasePath;

[VB.NET]
    Property BasePath As String

[Pascal]
    property BasePath : String;

[C++]
    void get_BasePath(std::string &OutResult);
    void set_BasePath(const std::string &Value);

[PHP]
    string get_BasePath()
    void set_BasePath(string $Value)

[Java]
    String getBasePath();
    void setBasePath(String Value);

Description

    Use this property to specify the base path for all file operations. Base path is a prefix, added to all paths and filenames, accessed via the adapter. Base path is used to restrict access of SecureBlackbox components to certain branch of directory tree, for example, per-user storage. Any attempt to access resources outside of the base path will fail.

Discuss this help topic in SecureBlackbox Forum