Wie erhalte ich das geänderte Datum/Uhrzeit einer Datei in Python?Wie erhalte ich das geänderte Datum/Uhrzeit einer Datei in Python?
21
A
Antwort
38
os.path.getmtime(filepath)
oder
os.stat(filepath).st_mtime
19
Formated:
import time
print time.strftime("%m/%d/%Y %I:%M:%S %p",time.localtime(os.path.getmtime(fname)))
+0
Danke für das Posten! –
was ist besser? :) – endolith
@endolith: http://stackoverflow.com/a/237082/125507 sagt "os.path.getmtime() ist dafür gemacht, und einfacher." – endolith