标签:datetime getmtime pytho amp imp chdir system 基于 coding
#!/user/bin/env python
#-*-coding:utf-8-*-
#基于python2.7
import os
import time
import datetime
#指定目录
dir = "/mnt/aa/bb/cc/"
chmoddir = os.chdir(dir)
list = os.listdir(dir)
for i in list:
#得到目标目录的最后修改时间戳
a = os.path.getmtime(‘%s‘ %i)
#格式化时间戳
ctime = datetime.datetime.fromtimestamp(a)
#两天前的时间
t = datetime.datetime.now() - datetime.timedelta(days=2,hours=0)
#print(t)
#打印删除两天前的文件
if ctime < t:
print(i)
os.system("rm -rf %s" %i)
标签:datetime getmtime pytho amp imp chdir system 基于 coding
原文地址:https://www.cnblogs.com/misswangxing/p/10396052.html