使用WebClient
,如何从FTP服务器下载文件,并使用来自服务器的文件时间?
using (WebClient client = new WebClient()) {
client.DownloadFile("ftp://ftp123.abc.com/xyz/file.txt", "file.txt");
}
上面的代码创建了一个新文件,所以它的时间戳是在下载时。
问题是如何从服务器文件中检索时间戳。
来自MSDN
public static void GetDateTimestampOnServer (Uri serverUri)
{
if (serverUri.Scheme != Uri.UriSchemeFtp)
{
throw new ArgumentException("Scheme Must match Ftp Uri Scheme");
}
FtpWebRequest request = (FtpWebRequest)WebRequest.Create (serverUri);
request.Method = WebRequestMethods.Ftp.GetDateTimestamp;
FtpWebResponse response = (FtpWebResponse)request.GetResponse ();
Console.WriteLine ("{0} {1}",serverUri,response.LastModified);
}