I have a script that needs to do some stuff based on file creation & modification dates but has to run on Linux & Windows.
>>> import os >>> os.stat('feedparser.py').st_mtime 1136961142.0 >>> os.stat('feedparser.py').st_ctime 1222664012.233 >>>