发布时间:2019-06-21 17:33:18编辑:auto阅读(2167)
主要逻辑是判断文件的最后修改时间与创建时间是否在秒级别上一致,此代码适用于Python 2.x;Python 3.x需要改一下代码。
import time
import os
#Read fime name
FileName='D:/scapegoat/xx.csv'
#print file creation time
print time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(os.stat(FileName).st_ctime))
#print file modified time
print time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(os.stat(FileName).st_mtime))
上一篇: CentOS 编译安装 python 3
下一篇: Python编写日志分析小脚本
51027
50409
41023
37886
32351
29250
28130
22967
22929
21257
1131°
1836°
1482°
1419°
1706°
1509°
2170°
3741°
3671°
2583°