博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python删除x天前文件及文件夹
阅读量:5116 次
发布时间:2019-06-13

本文共 692 字,大约阅读时间需要 2 分钟。

 

#!/usr/bin/env python# -*- coding:utf-8 -*-import os, time, sys, shutildef delFiles(beforeSec, dirpath):    for i in os.listdir(dirpath):        filepath = "%s%s%s" %(dirpath, os.sep, i)        if os.path.getmtime(filepath) < beforeSec:            try:                if os.path.isfile(filepath):                    os.remove(filepath)                else:                    shutil.rmtree(filepath)            except Exception as e:                print(e)if __name__ == '__main__':    dir_path = "D:\\website\\image.xx.com\\Contracts"    beforeDay = 10    beforeSec = time.time() - 3600 * 24 * beforeDay    delFiles(beforeSec, dir_path)

 

转载于:https://www.cnblogs.com/linkenpark/p/7689122.html

你可能感兴趣的文章
设置java web工程中默认访问首页的几种方式
查看>>
ASP.NET MVC 拓展ViewResult实现word文档下载
查看>>
jQuery Mobile笔记
查看>>
8、RDD持久化
查看>>
第二次团队冲刺--2
查看>>
VMware Tools安装
查看>>
Linux上架设boost的安装及配置过程
查看>>
[转载]加密算法库Crypto——nodejs中间件系列
查看>>
zoj 2286 Sum of Divisors
查看>>
OO5~7次作业总结
查看>>
如何判断主机是大端还是小端(字节序)
查看>>
Centos7 日志查看工具
查看>>
使用Xshell密钥认证机制远程登录Linux
查看>>
OpenCV之响应鼠标(三):响应鼠标信息
查看>>
python7 数据类型的相互转化 字符编码
查看>>
Android 画图之 Matrix(一)
查看>>
List<T>列表通用过滤模块设计
查看>>
【模板】最小生成树
查看>>
设计模式之结构型模式
查看>>
iis7规范URL及利用web.config进行重定向
查看>>