1 Star 0 Fork 0

GF/xpdf

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
clear.py 592 Bytes
一键复制 编辑 原始数据 按行查看 历史
geyouwen 提交于 2024-05-15 10:14 . update
# 定期清除文件
import os.path
import time
import fitz
path = os.path.join('static/media')
files = os.listdir(path)
for file_name in files:
if not file_name.endswith('.media'):
continue
f_path = os.path.join('static/media', file_name)
timestamp = os.path.getctime(f_path)
current_timestamp = time.time()
if current_timestamp - timestamp > 86400:
os.remove(f_path)
print(f_path + " 已经移除")
else:
time_readable = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(timestamp))
print('创建时间:' + time_readable)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/geyouwen/xpdf.git
[email protected]:geyouwen/xpdf.git
geyouwen
xpdf
xpdf
master

搜索帮助