Answers for "python get last date time file was modified"

1

python windows get file modified date

# note: test.txt can also be a file path
import os.path, time
print("Last modified: %s" % time.ctime(os.path.getmtime("test.txt")))
print("Created: %s" % time.ctime(os.path.getctime("test.txt")))
Posted by: Guest on March-22-2021
0

python get last modification time of file

import os
time = os.path.getmtime("file.txt")

print(time) # 1600113737.82
Posted by: Guest on September-15-2020

Code answers related to "python get last date time file was modified"

Python Answers by Framework

Browse Popular Code Answers by Language