| FtpMLSD Method (String) |
Returns parsed list of files and folders in the specified folder or file information in case of a file.
This method uses MLSD 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<FtpItem> MLSD(
string remotePath
)
Public Function MLSD (
remotePath As String
) As List(Of FtpItem)
public:
List<FtpItem^>^ MLSD(
String^ remotePath
)
member MLSD :
remotePath : string -> List<FtpItem>
Parameters
- remotePath
- Type: SystemString
The path of the remote file or folder.
Return Value
Type:
ListFtpItemList containing files and folders.
See Also