Given a file and a directory and we have to get and print their last access time in UTC format using C# program.
File.GetLastAccessTimeUtc()
This is a method of "File class, which returns the last access time of a file or a directory in UTC format.
Syntax:
File.GetLastAccessTimeUtc(path);
Parameter(s):
- path - Location of file or directory.
Last access time contains following detail:
- Date
- Month
- Year
- Hour
- Minute
- Second
- AM/PM
-
Program
Output
Note: In above program, we need to remember, when we use "File" class, System.IO namespace must be included in the program.