用户登录
用户注册

分享至

python递归删除指定目录

  • 作者: jijue
  • 来源: 51数据库
  • 2022-08-12
'''
@author: Administrator
'''
#coding=utf-8
import os
import shutil
dir = "G://tmp//sz//ngtsverify"
 
def removeDir():
     for root, dirs, files in os.walk(dir, True, None, False):
         if 'CVS' in root:
             print("the root is: ", root)
             files = os.listdir(root)
             for f in files:
                 if (os.path.isfile(os.path.join(root,f)) == True):
                     print('the file name is:', os.path.splitext(os.path.join(root,f))[0])
                     #删除文件
                     os.remove(os.path.join(root,f))
             #删除主目录       
             os.removedirs(root)
               
                          
     
if __name__ == '__main__':
    removeDir()

软件
前端设计
程序设计
Java相关