Answers for "get recent changes to a file python"

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 "get recent changes to a file python"

Python Answers by Framework

Browse Popular Code Answers by Language