Windows下删除系统垃圾的脚本
前段时间寝室的个同胞,刚买电脑不久,然后让它用工具删系统垃圾都不会,实在没办法 用python给他写了个,当然只有最简单的功能
#coding:utf-8
import os
#from glob import globif os.name == nt:
if HOMEPATH in os.environ:
home = os.environ[HOMEDRIVE] + os.environ[HOMEPATH]
else:
home = os.environ[HOMEPATH]workpath = os.path.join(home,Local Settings)
#递归删除文件
#里面和下面的函数用try是抛出删除正在使用的零时文件出错
def delfile(path):
for file in os.listdir(path):
if os.path.isfile(os.path.join(path,file)):
try:
print " 删除垃圾文件: %s" % (os.path.join(path,file))
os.remove(os.path.join(path,file))
except:
pass
elif os.path.isdir(os.path.join(path,file)):
delfile(os.path.join(path,file))
else:
pass
delfile(os.path.join(workpath,Temp))
delfile(os.path.join(workpath,Temporary Internet Files))
#删除文件家的时候必须为空文件夹,而且只能从最里层删起
def deldir(pa):
for i in os.listdir(pa):
if os.path.isdir(os.path.join(pa,i)):
if len(os.listdir(os.path.join(pa,i))) > 0:
deldir(os.path.join(pa,i))
try:
os.rmdir(os.path.join(pa,i))
except:
pass
else:
try:
print " 删除文件夹 %s" % (os.path.join(pa,i))
os.rmdir(os.path.join(pa,i))
except:
pass
deldir(os.path.join(workpath,Temp))
deldir(os.path.join(workpath,Temporary Internet Files))
print """
系统产生的零时垃圾文件清理完毕!
"""
raw_input("请按回车键退出!")
然后用cx_freeze给他弄成了exe,让它电脑时间晚长了就双击一次
补充:综合编程 , 安全编程 ,