Q:

C# program to get last write time of file or directory

0

Given a file and a directory and we have to find their last write time using C# program.

File.GetLastWriteTime()

This is a method of "File class, it is used to get the last write time of given file/directory.

Syntax:

File.GetLastWriteTime(path);

Parameter(s):

  1. path - Location of file or directory.

Last write time contains the following detail:

  • Date
  • Month
  • Year
  • Hour
  • Minute
  • Second
  • AM/PM
  •  

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program

using System;
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main()
        {
            DateTime dt1;
            DateTime dt2;

            dt1 = File.GetLastWriteTime("ABC.TXT");
            Console.WriteLine("Last Write Time of file(ABC.TXT) : " + dt1);

            dt2 = File.GetLastWriteTime("mydir");
            Console.WriteLine("Last Write Time of directory(mydir) : " + dt2);
        }
    }
}

Output

Last Write Time of file(ABC.TXT) : 10/31/2017 9:38:13 PM
Last Write Time of directory(mydir) : 10/31/2017 9:08:23 PM

Note: 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

total answers (1)

C# file handling (File class) solved programs/examples

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C# program to set last write time of file or direc... >>
<< C# program to set last access time in UTC format o...