| FtpNLST Method (String) |
Returns a list of file and folder names in the current server folder.
This method uses NLST command (
RFC 3659), that may be NOT supported by the server.
Namespace:
Limilabs.FTP.Client
Assembly:
Ftp (in Ftp.dll) Version: 2.0.22214.1022
Syntax public List<string> NLST(
string pattern
)
Public Function NLST (
pattern As String
) As List(Of String)
public:
List<String^>^ NLST(
String^ pattern
)
member NLST :
pattern : string -> List<string>
Parameters
- pattern
- Type: SystemString
Search pattern to use.
Return Value
Type:
ListStringList containing file and folder names.
See Also