c#如何列出ftp目录下的所有文件,无需下载即可读取每个文件

时间:2017-04-26 14:23:09

标签: c# ftp

这是用于列出ftp目录中的文件:

FtpWebRequest ftpRequest = (FtpWebRequest)WebRequest.Create(uri);
ftpRequest.Credentials =new NetworkCredential("username","pword");
ftpRequest.Method = WebRequestMethods.Ftp.ListDirectoryDetails;
FtpWebResponse response = (FtpWebResponse)ftpRequest.GetResponse();
StreamReader streamReader = new StreamReader(response.GetResponseStream());


string line = streamReader.ReadLine();
while (!string.IsNullOrEmpty(line))
{
    // if file is .txt, read file content
}

但是如何阅读文件的内容?不只是在这里列出?

(我现在首先要下载它们) 感谢。

0 个答案:

没有答案