本文实例讲述了Python删除windows垃圾文件的方法。分享给大家供大家参考。具体如下:
#Coding:utf-8import 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 "\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: passdelfile(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: passdeldir(os.path.join(workpath,'Temp'))deldir(os.path.join(workpath,'Temporary Internet files'))print """ 系统产生的零时垃圾文件清理完毕! """raw_input("请按回车键退出!")
希望本文所述对大家的Python程序设计有所帮助。
总结以上是内存溢出为你收集整理的Python删除windows垃圾文件的方法全部内容,希望文章能够帮你解决Python删除windows垃圾文件的方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)