Time.cTime (os.path.getmtime Phyton di Datetime

x = time.strftime("%d.%m.%Y", time.gmtime(os.path.getmtime("{}".format("file.txt"))))

# getctime can be used instead of getmtime
# getctime = file creation date
# getmtime = last modified file date

#"file.txt" can also be a filepath if it is in a different directory

# time.strftime("%d.%m.%Y")
# changes the output date from time.gmtime(...) in a more readable form.
# %d = day , %m = month, %y = year 
# . in in my case the seperator but it can be anything, like /
Stupid Shrew