| FtpGetList Method (String) |
Returns parsed list of files and folders in the specific server folder.
Namespace:
Limilabs.FTP.Client
Assembly:
Ftp (in Ftp.dll) Version: 2.0.22214.1022
Syntax public List<FtpItem> GetList(
string remotePath
)
Public Function GetList (
remotePath As String
) As List(Of FtpItem)
public:
List<FtpItem^>^ GetList(
String^ remotePath
)
member GetList :
remotePath : string -> List<FtpItem>
Parameters
- remotePath
- Type: SystemString
The path of the remote file or folder.
Return Value
Type:
ListFtpItemList containing files and folders.
Remarks
This method will use the MLSD command (
RFC 3659) if the server supports
MLST extension and the LIST command (
RFC 959) if this extensions is not supported.
See Also