如何使用C#从FTP下载大量文件?

3
我需要定期运行一个控制台应用程序,该程序需要从FTP站点下载仅 .pgp文件。FTP中的任何pgp文件都必须被下载。我已经找到了获取FTP目录清单的示例代码,并在此处编写了它:
FtpWebRequest req = (FtpWebRequest)WebRequest.Create("ftp://ourftpserver");
        req.Method = WebRequestMethods.Ftp.ListDirectoryDetails;

        req.Credentials = new NetworkCredential("user", "pass");

        FtpWebResponse response = (FtpWebResponse)req.GetResponse();

        Stream responseStream = response.GetResponseStream();
        StreamReader reader = new StreamReader(responseStream);
        Console.WriteLine(reader.ReadToEnd());

        Console.WriteLine("Directory List Complete, status {0}", response.StatusDescription);

        reader.Close();
        response.Close();

如何从目录列表中下载所有类型为.pgp的文件并将它们保存到我们服务器上的本地目录中?


解析响应并使用循环。 - SLaks
SLaks,您能提供一个代码示例来详细说明吗? - SidC
4个回答

8
FtpWebRequestFtpWebResponse对象真正的设计目的是执行单个请求(例如下载单个文件等)。
您需要查找FTP客户端。 .NET Framework中没有FTP客户端,但有一个免费的名为System.Net.FtpClient的工具似乎很好用。

非常感谢!我在这个网站、MSDN和其他地方阅读了很多帖子,但是你的信息直接而且简明扼要。非常感激。我现在会下载这个:) - SidC

3

有一个非常好的库可以使用https://sshnet.codeplex.com/ 代码片段: 您需要将要下载文件的文件夹路径作为localFilesPath传递,将要下载的Ftp文件夹路径作为remoteFTPPath传递。

public static void DownloadFilesFromFTP(string localFilesPath, string remoteFTPPath)
        {
            using (var sftp = new SftpClient(Settings.Default.FTPHost, Settings.Default.FTPUsername, Settings.Default.FTPPassword))
            {
                sftp.Connect();
                sftp.ChangeDirectory(remoteFTPPath);
                var ftpFiles = sftp.ListDirectory(remoteFTPPath, null);
                StringBuilder filePath = new StringBuilder();
                foreach (var fileName in ftpFiles)
                {

                    filePath.Append(localFilesPath).Append(fileName.Name);
                    string e = Path.GetExtension(filePath.ToString());
                    if (e == ".csv")
                    {
                        using (var file = File.OpenWrite(filePath.ToString()))
                        {
                            sftp.DownloadFile(fileName.FullName, file, null);
                            sftp.Delete(fileName.FullName);
                        }
                    }
                    filePath.Clear();
                }
                sftp.Disconnect();
            }
        }

根据这个答案开始使用这个,非常好! - Michael A

1

Ultimate FTP 可以帮助你。以下代码片段演示了如何使用:

using ComponentPro.IO;
using ComponentPro.Net;

...

// Create a new instance.
Ftp client = new Ftp();

// Connect to the FTP server.
client.Connect("myserver");

// Authenticate.
client.Authenticate("userName", "password");

// ...

// Get all directories, subdirectories, and files from remote folder '/myfolder' to 'c:\myfolder'.
client.DownloadFiles("/myfolder", "c:\\myfolder");

// Get all directories, subdirectories, and files that match the specified search pattern from remote folder '/myfolder2' to 'c:\myfolder2'.
client.DownloadFiles("/myfolder2", "c:\\myfolder2", "*.pgp");

// or you can simply put wildcard masks in the source path, our component will automatically parse it.
// download all *.pgp files from remote folder '/myfolder2' to local folder 'c:\myfolder2'.
client.DownloadFiles("/myfolder2/*.pgp", "c:\\myfolder2");

// Download *.pgp files from remote folder '/myfolder2' to local folder 'c:\myfolder2'.
client.DownloadFiles("/myfolder2/*.pgp", "c:\\myfolder2");

// Get files in the folder '/myfolder2' only.
TransferOptions opt = new TransferOptions(true, RecursionMode.None, false, (SearchCondition)null, FileExistsResolveAction.Overwrite, SymlinksResolveAction.Skip);
client.DownloadFiles("/myfolder2", "c:\\myfolder2", opt);

// ...

// Disconnect.
client.Disconnect();

http://www.componentpro.com/doc/ftp 有更多的例子。


4
请注意,这是一款付费的库,而且并不好用。建议避免使用。有很多好用的免费解决方案! - Michael A

1

从FTP下载文件的代码。

        FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://127.0.0.0/my.txt");
        request.Method = WebRequestMethods.Ftp.DownloadFile;
        request.Credentials = new NetworkCredential("userid", "pasword");
        FtpWebResponse response = (FtpWebResponse)request.GetResponse();
        Stream responseStream = response.GetResponseStream();
        FileStream file = File.Create(@c:\temp\my.txt);
        byte[] buffer = new byte[32 * 1024];
        int read;
        //reader.Read(

        while ((read = responseStream.Read(buffer, 0, buffer.Length)) > 0)
        {
            file.Write(buffer, 0, read);
        }

        file.Close();
        responseStream.Close();
        response.Close();

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接