获取ftp中目录的最后修改日期

时间:2012-10-09 21:50:28

标签: c#-4.0

如果最近使用c#

通过ftp修改目录,我该怎么办?

我试过这个,没有运气

FtpWebRequest ftpRequest = (FtpWebRequest)WebRequest.Create(new Uri("ftp://" + ftpAddress + "/" + "public_html" + "/" + this.Url)); 
ftpRequest.Credentials = new NetworkCredential(FTPUsername, FTPPassword); 
ftpRequest.Method = WebRequestMethods.Ftp.GetDateTimestamp; 
DateTime FtpFileLastModified = ((FtpWebResponse)ftpRequest.GetResponse()).LastModified; 
return FtpFileLastModified;

0 个答案:

没有答案