I ran into an issue when trying to extract file creation date via Python. I am using Python3.6 on 64bit Windows7.
I have a number of pictures (jpeg) that were taken [I should use "created" instead] in the past and uploaded to an on-line album on the same day. [Note: These JPEGs are not 'fresh' off the camera, some of them have been processed by other software and then "saved as"; Some of them are actually cellphone screenshots. So the EXIF Info may not be available] For example one of them were taken [or a better example cellphone screenshot created] and uploaded on 1/1/2016. I downloaded it from the on-line album on 11/1/2017. When this jpeg file is listed in Win7 file explorer’s “details” view, under “date” column it is showing 1/1/2016. When I try to use Python to extract the creation date info, all three ways (st_atime, st_mtime, st_ctime) gave me 11/1/2017. I then right click the file and view its property, there “created”, “modified”, and “accessed” all pointed to 11/1/2017.
I am wondering if there is still a Python way to get the original creation date, i.e. 1/1/2016, from this file? On my windows screen I clearly see that date "1/1/2016" Why I could not retrieve it? That's thing really drives me to ask this question
Thank you!