Hello it's my first post.
I started doing some coding in Python on OS X today.
I've noticed that OS X has such thing as a date added which is the time the file was put into specified folder.
I'm trying to get that date as a timestamp, however none of types work.
I've tried all three I know:
st = os.path.getctime('Untitled.gif') st1 = os.path.getatime('Untitled.gif') st2 = os.path.getmtime('Untitled.gif') But none of them shows what I need. Maybe there's a way to get all metadata from file somehow and just pick the info I need.
Thanks