os.path.getmtime() and os.stat() seem to return values in whole seconds only.
Is this the greatest resolution possible on either a Windows or OSX file system, or is there a way of getting greater resolution on file times?
|
|
Is this the greatest resolution possible on either a Windows or OSX file system, or is there a way of getting greater resolution on file times?
|
|||
|
|
|
|
The documentation for os.stat() has a note that says:
On for instance Windows, the FILETIME structure used to represent file times uses a 100-nanosecond resolution. I would expect Python to "know" this, and give you the best possible resolution. Is it possible that you're using files on a FAT filesystem? |
||
|
|
|
HFS+ (used by OS X) has a date resolution of one second. |
||
|
|
|
|
As documented in the Python Specifically, the modification time returned by |
|||
|
|