ARTICLE

Get and Set File Last Write Time in C#

Posted by Dinesh Beniwal Articles | Files, Directory, IO July 20, 2012
In this article we will discuss about how to get and set Last Write Time of File in C#.
Reader Level:

The SetLastWriteTime and GetLastWriteTime methods are used to set and get the last write date and time of the specified file. The following code snippet sets and gets the last write date and time of a file.

// Get and set file last write time

string fileName = @"c:\temp\Mahesh.txt";
File
.SetLastWriteTime(fileName, DateTime.Now);
DateTime
dt = File.GetLastWriteTime(fileName);
Console
.WriteLine("File last write time: {0}", dt.ToString()); 

Free Book

Download Complete free book here: Working with Directories in C#

Login to add your contents and source code to this article
post comment
     
COMMENT USING
PREMIUM SPONSORS
DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and add new content to existing PDF documents from within your applications.
SPONSORED BY
  • PDF reports have never been easier to create. With our included WYSIWYG Designer, you can layout your reports, set up your data source and let DynamicPDF ReportWriter do the rest.
Get Career Advice from Experts