Given a file and we have to set its last write time using C# program.
File.SetLastWriteTime()
This is a method of "File class, it is used to set last write time of a file/directory.
Syntax:
File.SetLastWriteTime(path);
Parameter(s):
- path - Location of file or directory.
We can set following detail of last write time:
- Date
- Month
- Year
- Hour
- Minute
- Second
- AM/PM
-
Program
Output
Time before set last write time: Last write Time of file(ABC.TXT) : 10/31/2017 9:50:59 PM Time After set last write time: Last write Time of file(ABC.TXT) : 10/31/2017 9:55:36 PMNote: In above program, we need to remember, when we use "File" class, System.IO namespace must be included in the program.
need an explanation for this answer? contact us directly to get an explanation for this answer