python脚本---清理过期文件
2020-12-13 03:57
标签:for 定义 std clean bin end move port 存在 python脚本---清理过期文件 标签:for 定义 std clean bin end move port 存在 原文地址:https://blog.51cto.com/11954248/2414409#!/usr/bin/python
import os,time
del_file = [] #定义一个空列表,将存放过期文件
class clean:
def __init__(self,file_path):
self.file_path = file_path
def del_file(self):
lf = list(os.listdir(self.file_path)) #将目标目录下的所有文件存在列表lf中
for i in range(len(lf)):
file_date = os.stat(self.file_path + lf[i]).st_mtime #获取文件的最后修改时间
date_time = time.time()
rt = (date_time - file_date)/60/60 #获取最后修改时间和现在的时间间隔(小时)
if rt