从FTP目录中检索文件

时间:2014-02-06 09:36:14

标签: c# ftp .net-4.5

我有一个应用程序,我希望每天从FTP目录下载一个文件。我想从FTP站点下载该文件但不删除它,以便其他用户也可以下载它。

如果我的ftp网站地址是ftp://ftp.mySite.com/,我该怎么办呢?我到目前为止浏览互联网有这个。我还没有运行代码,因为我想确保我不从网站上删除文件只下载副本。此外,文件可能不存在,检查文件是否存在的最佳方法是什么?

 FtpWebRequest ftpRequest = (FtpWebRequest)FtpWebRequest.Create(host + "/" + remoteFile);
 ftpRequest.Credentials = new NetworkCredential(user, pass);
 ftpRequest.UseBinary = true;
 ftpRequest.UsePassive = true;
 ftpRequest.KeepAlive = true;            
 ftpRequest.Method = WebRequestMethods.Ftp.DownloadFile;

0 个答案:

没有答案