w3resource

C#: Windows file time to an equivalent UTC time


Write a C# Sharp Program to convert the specified Windows file time to an equivalent UTC time.

Sample Solution:-

C# Sharp Code:

using System;

public class Example23
{
    public static void Main(String[] argv)
    {  
        // Attempt to convert a file time in Universal Time format to a DateTime object
        // Note: 12123123123123123 is just an example file time value
        DateTime dt = DateTime.FromFileTimeUtc(12123123123123123);

        // Output the resulting DateTime object after conversion
        System.Console.WriteLine(dt);
    }
}

Sample Output:

6/2/1639 9:25:12 AM 

Flowchart:

Flowchart: C# Sharp Exercises - Windows file time to an equivalent UTC time

Go to:


PREV : Write a C# Sharp program which shows that when a time that falls within this range is converted to a long integer value and is then restored and the original value is adjusted to become a valid time.
NEXT : Write a C# Sharp program to display the string representation of a date using all possible standard date and time formats in the computer's current culture (en-US.).

C# Sharp Code Editor:



Improve this sample solution and post your code through Disqus

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.