 | FtpGetList(String) Method |
Returns parsed list of files and folders in the specific server folder.
Namespace: Limilabs.FTP.ClientAssembly: Ftp (in Ftp.dll) Version: 2.0.26109.1248
Syntaxpublic 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 String
- The path of the remote file or folder.
Return Value
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