Discuss this help topic in SecureBlackbox Forum

TElSftpClient.ReadSymLink

TElSftpClient     See also     


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


Reads the target of a symbolic link

Declaration

[C#]
    bool ReadSymLink(string Path);

[VB.NET]
    Function ReadSymLink(ByVal Path As String) As Boolean

[Pascal]
    function ReadSymLink(Path : string): Boolean;
    procedure ReadSymLinkSync(const Path: string);

[C++]
    bool ReadSymLink(const std::string &Path);

[PHP]
    bool ReadSymLink(string $Path)

[Java]
    boolean readSymLink(String Path);

Parameters

  • Path - path to symbolic link

Return value

    True if operation was completed successfully;
    False otherwise.

Description

    Use this method to read the target of symbolic link specified by Path parameter. If the target was successfully retrieved, the OnDirectoryListing event with the only entry is fired. The OnError event is fired otherwise.

See also:     CreateSymLink    

Discuss this help topic in SecureBlackbox Forum