 | FtpList(String) Method |
Returns parsed list of files and folders in the specified server folder. This method uses LIST command (
RFC 959).
There is no standard that describes LIST command response,
GetList(String) is a better choice in most cases.
Namespace: Limilabs.FTP.ClientAssembly: Ftp (in Ftp.dll) Version: 2.0.26109.1248
Syntaxpublic List<FtpItem> List(
string remotePath
)
Public Function List (
remotePath As String
) As List(Of FtpItem)
public:
List<FtpItem^>^ List(
String^ remotePath
)
member List :
remotePath : string -> List<FtpItem> Parameters
- remotePath String
- The path of the remote file or folder.
Return Value
ListFtpItemList containing files and folders.
See Also