微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

python删除x天内无人访问的文件

如何解决python删除x天内无人访问的文件

我希望编写一个 python 脚本来删除在 >= x 天内未被访问的文件。 我知道我可以检查文件的创建时间和修改时间,但是我可以以某种方式检查它上次访问的时间吗?

谢谢, 李

解决方法

您可以使用“stat”检查文件上次打开的时间, 使用“时间”检查已经过去了多少时间, 并使用 'os' 删除它:

import os
import stat
import time

fileStats = os.stat(filePath)
last_access = fileStats[stat.ST_ATIME] # in seconds
now = time.time() # in seconds
days = (now - last_access)  / (60 * 60 * 24) 
# The seconds that have elapsed since the file was last opened are divided by the number of seconds per day 
# this give the number of days that have past since the file last open

if x <= days:
  # we delete the file
    os.remove(filePath)
  

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。