Discuss this help topic in SecureBlackbox Forum

TElSimpleSFTPClient.RequestAbsolutePathEx

TElSimpleSFTPClient     See also     


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


Asks the server to canonicalize any given path name to the absolute path.

Declaration

[C#]
    string RequestAbsolutePathEx(string Path, TSBSftpRealpathControl Control, TElStringList ComposePath);

[VB.NET]
    Function RequestAbsolutePathEx(ByVal Path As String, ByVal Control As TSBSftpRealpathControl, ByVal ComposePath As TElStringList) As String

[Pascal]
    function RequestAbsolutePathEx(const Path : string; Control : TSBSftpRealpathControl; ComposePath : TStringList) : string;

[C++]
    void RequestAbsolutePathEx(const std::string &Path, TSBSftpRealpathControl Control, TStringList &ComposePath, std::string &OutResult);
    void RequestAbsolutePathEx(const std::string &Path, TSBSftpRealpathControl Control, TStringList *ComposePath, std::string &OutResult);

[PHP]
    string RequestAbsolutePathEx(string $Path, integer $Control, TStringList $ComposePath)

[Java]
    String requestAbsolutePathEx(String Path, TSBSftpRealpathControl Control, TElStringList ComposePath);

Parameters

  • Path - path name
  • Control - manages possible ways of the path transforming
  • ComposePath - A path which the client wishes the server to compose with the original path to form the new path.

Control values:

Return value

    True if operation was completed successfully;
    False otherwise.

Description

    Use this method to make server canonicalize any path name to the absolute path. This is useful for converting path names containing «..» components or relative pathnames without a leading slash into absolute paths.
    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:     RequestAbsolutePath     MakeDirectory     OpenDirectory    

Discuss this help topic in SecureBlackbox Forum