I have a script that needs to do some stuff based on file creation & modification dates but has to run on Linux & Windows.
What's the best cross-platform way to get file creation & modification date/times in Python?
|
|
You have a couple of choices. For one, you can use the os.path.getmtime and os.path.getctime functions:
Your other option is to use os.stat:
Note: ctime() does not refer to creation time on *nix systems, but rather the last time the inode data changed. (thanks to kojiro for making that fact more clear in the comments by providing a link to an interesting blog post) |
|||||
|
|
The best function to use for this is os.path.getmtime(). Internally, this just uses The datetime module is the best manipulating timestamps, so you can get the modification date as a
Usage example:
|
|||||||||
|
|
os.stat http://www.python.org/doc/2.5.2/lib/module-stat.html edit: In newer code you should probably use os.path.getmtime() (thanks Christian Oudard) |
|||||||
|
|
There are two methods to get the mod time, os.path.getmtime() or os.stat(), but the ctime is not reliable cross-platform (see below). os.path.getmtime()getmtime(path) os.stat()stat(path)
In the above example you would use statinfo.st_mtime or statinfo.st_ctime to get the mtime and ctime, respectively. |
|||
|
|
|
|
|||
|
|
|
|||
|
|
|
So try this:
Compare that with your create date on the file in ls -lah They should be the same. |
|||||||
|