I have a copy of a previously generated file and want to detect the creation date of that original file.
I can use the following code to get the creation date of that copy, but not of the original file:
import os.path, time
print("last modified: %s" % time.ctime(os.path.getmtime(file)))
print("created: %s" % time.ctime(os.path.getctime(file)))
Source: http://www.aitek.ch/how-to-get-file-creation-modification-date-times-in-python/
But this will only retrive the creation date of the copy, not the creation date of the original file. I have read that if you copy a file on windows the old creation date will be the new modified date and the date of the copy will be the new creation date. I have also read that in the metda date there might be a real original file creation date but it seems I am unable to find it.

