File creation date in Windows
You can find the date of creating of a file by running the following command
import os
import time
def creation_date(path_to_file):
return time.strftime('%Y-%m-%d %H-%M-%S', time.localtime(os.path.getctime(path_to_file)))
creation_date("my.file")
'2019-11-04 14-35-54'