| FtpGetList Method |
Returns parsed list of files and folders in the current server folder.
Namespace:
Limilabs.FTP.Client
Assembly:
Ftp (in Ftp.dll) Version: 2.0.22214.1022
Syntax public List<FtpItem> GetList()
Public Function GetList As List(Of FtpItem)
public:
List<FtpItem^>^ GetList()
member GetList : unit -> List<FtpItem>
Return Value
Type:
ListFtpItemList containing files and folders.
Remarks
This method will use the MLSD command (
RFC 3659) if the server supports it, and the LIST command (
RFC 959) if MLSD is not supported.
See Also