in reply to Re^10: comparing 2 file time date stamps
in thread comparing 2 file time date stamps
At least cmd.exe using the dir command shows you the "correct" date in the sense of mtime. Whatever else you use seems to show you different data. I'm not the one to judge which one of the two is "right" or "wrong", but you will need to find out how you look at the "Windows file system", and determine whether the process of using dir or whatever else process you are using uses mtime or a different approach and which approach is "correct".
Your process as reflected in your program uses mtime and that approach is consistent with other parts of the OS that also are highly likely to use mtime (or rather, the Windows equivalent).
If you want to use a date entry different from mtime, you will have to specify which entry you want to use. Most likely, this entails detailing how you currently determine the "correct" timestamp of a file. If you can, for example, specify that you find the "correct" timestamp of a file through Explorer.exe, then likely culprits for showing a different timestamp than the mtime are various plugins for Explorer.exe that deliver a timestamp different from mtime.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^12: comparing 2 file time date stamps
by craigt (Acolyte) on Nov 07, 2014 at 14:47 UTC | |
by poj (Abbot) on Nov 07, 2014 at 15:04 UTC |