我正在尝试在C#控制台应用程序中下载一个文件,但是即使我现在的路径是正确的,我总是会收到错误,说“找不到550文件”。
有没有办法,返回当前路径(一旦连接到服务器)?
// 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连接,那就是确切的文件路径。
答案 0 :(得分:2)
最后通过使用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);
}
}
}
答案 1 :(得分:0)
我认为你的文件名错了。您的第一行写的名称与您设置为ftpfullpath的名称不同。您在第一行使用FTP_Dateiname,但在设置ftpfullpath时使用FTP_Pfad。
要查看实际发生的情况,请在'string ftpfullpath ...'之后移动第一行。
并将其更改为Console.WriteLine(“Starte Download von:”+ ftpfullpath);