I need to get a file creation date&time using python. I tried:
os.stat(r"path")[ST_CTIME]
But it is returning:
1263538277
This is not the creation date time. Is there a way to do it?
|
Why not?
Looks like a valid creation time to me. |
|||
|
|
From bytes.com:
Which gives:
You can also try:
For a more accurate timestamp. Note that the time returned by |
||||
|
|
Are you sure it isn't? Using unixtimestamp.com it converts to "01/18/2010 @ 7:34am" which at least makes sense. The timestamp is returned as a time in seconds from 1970-01-01. |
|||
|
|
|
See http://docs.python.org/library/os.html#os.stat
Everything is OK. |
|||||||
|
os.stat(r'path').st_ctime– Peter Hansen Jan 18 '10 at 18:24