C#单文件FTP下载

C# single file FTP download

我正在尝试在 C# 控制台应用程序中使用 FTP 下载文件,但即使我现在的路径是正确的,我总是会收到错误消息“找不到 550 文件”。

有什么方法可以return当前路径(一旦连接到服务器)?

// lade datei von FTP server
        string ftpfullpath = "ftp://" + Properties.Settings.Default.FTP_Server + Properties.Settings.Default.FTP_Pfad + "/" + Properties.Settings.Default.FTP_Dateiname;
        Console.WriteLine("Starte Download von: " + ftpfullpath);
        using (WebClient request = new WebClient())
        {
            request.Credentials = new NetworkCredential(Properties.Settings.Default.FTP_User, Properties.Settings.Default.FTP_Passwort);
            byte[] fileData = request.DownloadData(ftpfullpath);

            using (FileStream file = File.Create(@path + "/tmp/" + Properties.Settings.Default.FTP_Dateiname))
            {
                file.Write(fileData, 0, fileData.Length);
                file.Close();
            }
            Console.WriteLine("Download abgeschlossen!");
        }

编辑 我的错。修复了文件路径,仍然出现相同的错误。但是,如果我连接到 FileZilla,那是确切的文件路径。

我认为你的文件名是错误的。您的第一行写入的名称与您设置为 ftpfullpath 的名称不同。您在第一行使用 FTP_Dateiname,但在设置 ftpfullpath 时使用 FTP_Pfad。

要查看实际发生的情况,请在 'string ftpfullpath...')

之后移动第一行

并将其更改为 Console.WriteLine("Starte Download von: " + ftpfullpath);

最终使用 System.Net.FtpClient (https://netftp.codeplex.com/releases/view/95632) 并使用以下代码找到了解决方案。

// aktueller pfad
        string apppath = Directory.GetCurrentDirectory();

        Console.WriteLine("Bereite Download von FTP Server vor!");

        using (var ftpClient = new FtpClient())
        {
            ftpClient.Host = Properties.Settings.Default.FTP_Server;
            ftpClient.Credentials = new NetworkCredential(Properties.Settings.Default.FTP_User, Properties.Settings.Default.FTP_Passwort);
            var destinationDirectory = apppath + "\Input";

            ftpClient.Connect();

            var destinationPath = string.Format(@"{0}\{1}", destinationDirectory, Properties.Settings.Default.FTP_Dateiname);
            Console.WriteLine("Starte Download von " + Properties.Settings.Default.FTP_Dateiname + " nach " + destinationPath);
            using (var ftpStream = ftpClient.OpenRead(Properties.Settings.Default.FTP_Pfad + "/" + Properties.Settings.Default.FTP_Dateiname))
            using (var fileStream = File.Create(destinationPath , (int)ftpStream.Length))
            {
                var buffer = new byte[8 * 1024];
                int count;
                while ((count = ftpStream.Read(buffer, 0, buffer.Length)) > 0)
                {
                    fileStream.Write(buffer, 0, count);
                }
            }
        }