in reply to Re: Re: Getting Absolute File Time-Stamp?
in thread Getting Absolute File Time-Stamp?

Only thing is, the value is rounded to the nearest second! I would have expected it to return decimal places based on the available accuracy of the file system.

The number of seconds since the 0th second on January 1st, 1970 is a common unix time stamp. That's why it doesn't "return decimal places based on the available accuracy of the file system". Because it's a *nix time stamp, not a universal time stamp (although it is often used as such)

  • Comment on Re: Re: Re: Getting Absolute File Time-Stamp?

Replies are listed 'Best First'.
Re: Re: Re: Re: Getting Absolute File Time-Stamp?
by John M. Dlugosz (Monsignor) on Jan 26, 2004 at 21:31 UTC
    So is there a good portable way, or an existing popular module already implemented on various OS's, to get the native (or at least full-precision) time stamp of a file?