欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Python中使用glob和rmtree删除目录子目录及所有文件的例子

程序员文章站 2023-10-10 23:05:30
一、batch与shell中 目录及文件: 复制代码 代码如下: c:\testfolder\test ├─test2 └─test3   ...

一、batch与shell中

目录及文件:

复制代码 代码如下:

c:\testfolder\test
├─test2
└─test3
        test.txt

删除目录及其下的所有文件:

复制代码 代码如下:

rmdir /s /q c:\testfolder\test

删除所有目录下的文件,但是目录结构不能被删除:

复制代码 代码如下:

del /f /s /q c:\testfolder\test\*

linux类似的命令为:

复制代码 代码如下:

rm /rf /home/aaa/test

二、python中

:注意如果有错误会有异常抛出,需要处理异常。

1)删除文件且不支持通配符: os.remove()
2) 删除空的目录: os.rmdir()
3) 删除空的目录及子目录: os.removedirs()
3) 删除目录及其子目录中的文件:shutil.rmtree()

rmtree+异常处理:

复制代码 代码如下:

#code:
import shutil
def retreeexceptionhandler(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
[error 32] the process cannot access the file because it is being used by another process: 'c:\\testfolder\\test\\test3'
error:c:\testfolder\test
[error 145] the directory is not empty: 'c:\\testfolder\\test'

使用rmdir和remove等价于rmtree:

复制代码 代码如下:

#! /usr/bin/env python 
#coding=utf-8 
## {{{ recipe 193736 (r1): clean up a directory tree  
""" removeall.py:
 
   clean up a directory tree from root.
   the directory need not be empty.
   the starting directory is not deleted.
   written by: anand b pillai <abpillai@lycos.com> """ 
 
import sys, os 
 
error_str= """error removing %(path)s, %(error)s """ 
 
def rmgeneric(path, __func__): 
 
    try: 
        __func__(path) 
        print 'removed ', path 
    except oserror, (errno, strerror): 
        print error_str % {'path' : path, 'error': strerror } 
             
def removeall(path): 
 
    if not os.path.isdir(path): 
        return 
     
    files=os.listdir(path) 
 
    for x in files: 
        fullpath=os.path.join(path, x) 
        if os.path.isfile(fullpath): 
            f=os.remove 
            rmgeneric(fullpath, f) 
        elif os.path.isdir(fullpath): 
            removeall(fullpath) 
            f=os.rmdir 
            rmgeneric(fullpath, f)
## end of recipe 193736 }}}

三、通配符

glob是python自己带的一个文件操作相关模块,用它可以查找符合自己目的的文件,就类似于windows下的文件搜索,支持通配符操作,*,?,[]这三个通配符,*代表0个或多个字符,?代表一个字符,[]匹配指定范围内的字符,如[0-9]匹配数字。

它的主要方法就是glob,该方法返回所有匹配的文件路径列表,该方法需要一个参数用来指定匹配的路径字符串(本字符串可以为绝对路径也可以为相对路径),其返回的文件名只包括当前目录里的文件名,不包括子文件夹里的文件。