Python 监测文件是否更新

主要逻辑是判断文件的最后修改时间与建立时间是否在秒级别上一致,此代码适用于Python 2.x;Python 3.x须要改一下代码。
import time
import oside

#Read fime name
FileName='D:/scapegoat/xx.csv'it

#print file creation time
print time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(os.stat(FileName).st_ctime))io

#print file modified time
print time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(os.stat(FileName).st_mtime))class

相关文章
相关标签/搜索