Discuss this help topic in SecureBlackbox Forum

TElSimpleFTPSClient.GetNameList

TElSimpleFTPSClient     See also     


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


Returns current directory listing.

Declaration

[C#]
    void GetNameList();
    void GetNameList(string Parameters);

[VB.NET]
    Sub GetNameList()
    Sub GetNameList(ByVal Parameters As String)

[Pascal]
    procedure GetNameList;
    procedure GetNameList(const Parameters : string);

[C++]
    void GetNameList();
    void GetNameList(const std::string &Parameters);

[PHP]
    void GetNameList()
    void GetNameList(string $Parameters)

[Java]
    void getNameList();
    void getNameList(String Parameters);

Parameters

  • Parameters - contains a name of remote directory or file to get the listing for.

Description

    Use this method to get current directory listing. The server will return a stream of names of files and no other information. This method is intended to return information that can be used by a program to further process the files automatically. For example, in the implementation of a "multiple get" function.
During execution of the method the OnTextDataLine event is fired for each line of received reply.

See also:     GetFileList     OnTextDataLine    

Discuss this help topic in SecureBlackbox Forum