FtpWebResponse.LastModified Property
.NET Framework 4
Gets the date and time that a file on an FTP server was last modified.
Assembly: System (in System.dll)
The LastModified property returns the data requested by the GetDateTimeStamp() method. For requests sent using any other method, LastModified returns MinValue.
The following code example displays the date and time that a file on an FTP server was last modified.
public static bool GetDateTimestampOnServer (Uri serverUri) { // The serverUri should start with the ftp:// scheme. if (serverUri.Scheme != Uri.UriSchemeFtp) { return false; } // Get the object used to communicate with the server. FtpWebRequest request = (FtpWebRequest)WebRequest.Create (serverUri); request.Method = WebRequestMethods.Ftp.GetDateTimestamp; FtpWebResponse response = (FtpWebResponse)request.GetResponse (); Console.WriteLine ("{0} {1}",serverUri,response.LastModified); // The output from this method will vary depending on the // file specified and your regional settings. It is similar to: // ftp://contoso.com/Data.txt 4/15/2003 10:46:02 AM return true; }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.