比较日期以检查旧文件
我想检查文件是否早于一定时间(例如 2 天)。
我设法以这种方式获取文件创建时间:
>>> import os.path, time
>>> fileCreation = os.path.getctime(filePath)
>>> time.ctime(os.path.getctime(filePath))
'Mon Aug 22 14:20:38 2011'
我现在如何检查该时间是否早于 2 天?
我在 Linux 下工作,但跨平台解决方案会更好。干杯!
I want to check if a file is older than a certain amount of time (e.g. 2 days).
I managed to get the file creation time in such a way:
>>> import os.path, time
>>> fileCreation = os.path.getctime(filePath)
>>> time.ctime(os.path.getctime(filePath))
'Mon Aug 22 14:20:38 2011'
How can I now check if this is older than 2 days?
I work under Linux, but a cross platform solution would be better. Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我知道,这是一个老问题。但我一直在寻找类似的东西并提出了这个替代解决方案:
I know, it is an old question. But I was looking for something similar and came up with this alternative solution: