Discuss this help topic in SecureBlackbox Forum

TElSimpleSFTPClient.ReadSymLink

TElSimpleSFTPClient     See also     


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


Reads the target of a symbolic link

Declaration

[C#]
    void ReadSymLink(string Path, TElSftpFileInfo Info);

[VB.NET]
    Sub ReadSymLink(ByVal Path As String, ByVal Info As TElSftpFileInfo)

[Pascal]
    procedure ReadSymLink(const Path : string; Info : TElSftpFileInfo);

[C++]
    void ReadSymLink(const std::string &Path, TElSftpFileInfo &Info);
    void ReadSymLink(const std::string &Path, TElSftpFileInfo *Info);

[PHP]
    void ReadSymLink(string $Path, TElSftpFileInfo $Info)

[Java]
    void readSymLink(String Path, TElSftpFileInfo Info);

Parameters

  • Path - path to symbolic link
  • Info - information about file on which symbolic link points

Description

    Use this method to read the target of symbolic link specified by Path parameter.
    In case of error, EElSFTPError exception containing SFTP error code, is raised. For more information on error handling, please read the corresponding how-to article.

See also:     CreateSymLink    

Discuss this help topic in SecureBlackbox Forum