Python中使用glob和rmtree删除目录子目录及所有文件的例子
一、batch与shell中
目录及文件:
C:\TESTFOLDER\TEST
├─Test2
└─Test3
test.txt
删除目录及其下的所有文件:
rmdir/S/Qc:\TestFolder\test
删除所有目录下的文件,但是目录结构不能被删除:
del/F/S/Qc:\TestFolder\test\*
Linux类似的命令为:
rm/rf/home/aaa/test
二、python中
:注意如果有错误会有异常抛出,需要处理异常。
1)删除文件且不支持通配符:os.remove()
2)删除空的目录:os.rmdir()
3)删除空的目录及子目录:os.removedirs()
3)删除目录及其子目录中的文件:shutil.rmtree()
rmtree+异常处理:
#code:
importshutil
defretreeExceptionHandler(fun,path,excinfo):
print("Error:"+path)
print(excinfo[1])
shutil.rmtree('c:\\testfolder\\test',ignore_errors=False,onerror=retreeExceptionHandler)
#result:
Error:c:\testfolder\test\Test3
[Error32]Theprocesscannotaccessthefilebecauseitisbeingusedbyanotherprocess:'c:\\testfolder\\test\\Test3'
Error:c:\testfolder\test
[Error145]Thedirectoryisnotempty:'c:\\testfolder\\test'
使用rmdir和remove等价于rmtree:
#!/usr/bin/envpython
#coding=utf-8
##{{{Recipe193736(r1):Cleanupadirectorytree
"""removeall.py:
Cleanupadirectorytreefromroot.
Thedirectoryneednotbeempty.
Thestartingdirectoryisnotdeleted.
Writtenby:AnandBPillai<abpillai@lycos.com>"""
importsys,os
ERROR_STR="""Errorremoving%(path)s,%(error)s"""
defrmgeneric(path,__func__):
try:
__func__(path)
print'Removed',path
exceptOSError,(errno,strerror):
printERROR_STR%{'path':path,'error':strerror}
defremoveall(path):
ifnotos.path.isdir(path):
return
files=os.listdir(path)
forxinfiles:
fullpath=os.path.join(path,x)
ifos.path.isfile(fullpath):
f=os.remove
rmgeneric(fullpath,f)
elifos.path.isdir(fullpath):
removeall(fullpath)
f=os.rmdir
rmgeneric(fullpath,f)
##Endofrecipe193736}}}
三、通配符
glob是python自己带的一个文件操作相关模块,用它可以查找符合自己目的的文件,就类似于Windows下的文件搜索,支持通配符操作,*,?,[]这三个通配符,*代表0个或多个字符,?代表一个字符,[]匹配指定范围内的字符,如[0-9]匹配数字。
它的主要方法就是glob,该方法返回所有匹配的文件路径列表,该方法需要一个参数用来指定匹配的路径字符串(本字符串可以为绝对路径也可以为相对路径),其返回的文件名只包括当前目录里的文件名,不包括子文件夹里的文件。