Saturday 2 December 2017

C# Program to Get File Time using File Class


Code:

using System;
using System.IO;

class Program
{
    static void Main()
    {
        FileInfo info = new FileInfo("C:\\srip.txt");
        DateTime time = info.CreationTime;
        Console.WriteLine("File was Created at : ");
        Console.Write(time);
        Console.Read();
    }
}


Output:

File was Created at : 
9/30/2013 12:15:44 PM


More C# Programs:



















100+ Best Home Decoration Ideas For Christmas Day 2019 To Make Home Beautiful

Best gifts for Christmas Day | Greeting cards for Christmas Day | Gift your children a new gift on Christmas day This Christmas d...