Discuss this help topic in SecureBlackbox Forum

TElSftpFileInfo.LongName

TElSftpFileInfo     See also     


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


Specifies the long name of a file in a form of:

Declaration

[C#]
    string LongName;

[VB.NET]
    Property LongName As String

[Pascal]
    property LongName : string;

[C++]
    void get_LongName(std::string &OutResult);
    void set_LongName(const std::string &Value);

[PHP]
    string get_LongName()
    void set_LongName(string $Value)

[Java]
    String getLongName();
    void setLongName(String Value);

Description

    This read-only property contains expanded format for the file name, similar to what is returned by "ls -l" on Unix systems.
    The format of the this property is not defined by this protocol. It MUST be suitable for use in the output of a directory listing command (in fact, the recommended operation for a directory listing command is to simply display this data). However, clients SHOULD NOT attempt to parse the longname field for file attributes; they SHOULD use the Attributes property instead.
     Note, this property is not availablewhen using SFTP4 or later. The IETF working group dropped it because you can easily synthesize this if you need to display it to the user.

See also:     Attributes     Name    

Discuss this help topic in SecureBlackbox Forum