Click here to Skip to main content
Licence CPOL
First Posted 9 Jan 2009
Views 17,574
Bookmarked 27 times

How to get the correct file time in C# in .NET Framework 2.0

By pablodg | 9 Jan 2009
Workaround to get the correct LocalDateTime of files no matter which date settings your computer has.

1

2

3

4
5 votes, 100.0%
5
5.00/5 - 5 votes
μ 5.00, σa 1.10 [?]

Introduction

.NET Framework 2.0 misreports file date-time information. Through the Time and TimeInfo functions, you may get a wrong time info for files. A workaround is provided here, so are instructions to reproduce the funny behaviour.

Background

Some guy reported this issue to MS, but the topic was dismissed because they were unable to reproduce it (C# LastWriteTime BUG).

To reproduce the problem, you may set the following conditions:

  1. Create a file whose date-time is 11 September 2008, 11:51 PM
  2. Set your system date to 9 January 2009.
  3. Set your system time zone to GMT -2 Mid-Atlantic.
  4. Set your system time to "Automatically adjust clock for daylight saving changes".

image003.jpg

image002.jpg

Step 3 might not be necessary.

Then, just by doing Console.Write(File.GetLastWriteTime(filename).ToString()));, you will get a wrong date:

9/12/2008 12:51:43AM

If you disable "Automatically adjust clock for daylight saving changes", the reported date turns to be the correct one: 9/11/2008 11:51:43PM. In both cases, Windows Explorer reports 11:51:43PM.

Using the code

Following is a function to get the correct system date-time information:

static DateTime GetExplorerFileDate(string filename)
{
    DateTime now = DateTime.Now;
    TimeSpan localOffset = now - now.ToUniversalTime();
    return File.GetLastWriteTimeUtc(filename) + localOffset;
}

Points of interest

Using GetExplorerFileDate, you can get the 'real' date of your files, even when the bug is not fixed...

History

  • 2008/01/09 - Initial report.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

pablodg



Argentina Argentina

Member


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralIs localoffset needed Pinmembervijay_kj0:42 8 Feb '10  
GeneralOverloaded versions [modified] PinmemberAlexandru Matei1:16 16 Mar '09  
AnswerRe: Overloaded versions Pinmemberpablodg1:49 16 Mar '09  
GeneralThank you PinmemberAntonino Porcino23:26 18 Jan '09  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120210.1 | Last Updated 9 Jan 2009
Article Copyright 2009 by pablodg
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid