php删除垃圾文件,Python删除windows垃圾文件的方法
本文實例講述了Python刪除windows垃圾文件的方法。分享給大家供大家參考。具體如下:
#coding:utf-8
import os
#from glob import glob
if 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 "\n刪除垃圾文件: %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 "\n刪除文件夾 %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("請按回車鍵退出!")
希望本文所述對大家的Python程序設計有所幫助。
總結
以上是生活随笔為你收集整理的php删除垃圾文件,Python删除windows垃圾文件的方法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: php 微信机器人_微信小程序机器人自动
- 下一篇: forum.php 重定向,解析php