Discuss this help topic in SecureBlackbox Forum

TElCustomFileSystemAdapter.PathSeparator2

TElCustomFileSystemAdapter     See also     


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


This property specifies secondary path separator for file and path operations.

Declaration

[C#]
    char PathSeparator2;

[VB.NET]
    Property PathSeparator2 As Char

[Pascal]
    property PathSeparator2 : char;

[C++]
    char get_PathSeparator2();
    void set_PathSeparator2(char Value);

[PHP]
    char get_PathSeparator2()
    void set_PathSeparator2(char $Value)

[Java]
    char getPathSeparator2();
    void setPathSeparator2(char Value);

Description

    Use this property to specify the secondary separator between directory and file names in paths. Path separator value is dependent on the underlying file system. Usual path separator for Windows file systems is backslash (\), but Windows also understand slash (/) as a valid path separator. So to make the component recognized both, PathSeparator2 property is used and is set to slash by default.

See also:     PathSeparator    

Discuss this help topic in SecureBlackbox Forum