我一直在挖掘大量关于如何在C#中正确登录FTP的帖子,但是当我真正尝试时,它不起作用。通过我的阅读,我开始认为这是因为我的用户名中有'at'符号。这是真的还是看起来有其他错误?我能够使用FileZilla登录没问题。
var file = f.Element("FILE_PATH").Value;
string ftpHost = "myFTP.com";
var URI = @"ftp://" + ftpHost + "/download/" + file;
FtpWebRequest ftp = (FtpWebRequest)FtpWebRequest.Create(URI);
ftp.Credentials = new NetworkCredential(@"me@mysite.com", "Password");
ftp.UseBinary = true;
ftp.Method = WebRequestMethods.Ftp.DownloadFile;
FtpWebResponse ftpResponse = (FtpWebResponse)ftp.GetResponse();