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?
|
2
|
|
|
|
|
|
|
||
|
|
os.stat is what you want:
more info here: http://www.python.org/doc/2.5.2/lib/module-stat.html |
||
|
|
|
|
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. |
||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
|
|
os.stat does include the creation time. There's just no definition of st_anything for the element of os.stat() that contains the time. So try this:os.stat('feedparser.py')[8] Compare that with your create date on the file in ls -lah They should be the same. |
||
|
|
|
|
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:
|
|||
|
|