I need to get a file creation date&time using python. I tried:
os.stat(r\"path\")[ST_CTIME]
But it is returning:
126353
See http://docs.python.org/library/os.html#os.stat
st_ctime (platform dependent; time of most recent metadata change on Unix, or the time of creation on Windows)
Everything is OK.