首页 > 学院 > 开发设计 > 正文

python 查找指定名称的目录并删除

2019-11-14 12:27:18
字体:
来源:转载
供稿:网友
import os,sys,shutildef search(rootdir,search_dir_name): if os.path.isdir(rootdir): list_new = os.listdir(rootdir) for it in list_new: if it == search_dir_name: #os.rmdir(os.path.join(rootdir,it)) #不能删除有文件的文件夹 shutil.rmtree(os.path.join(rootdir,it)) else: search(os.path.join(rootdir,it),search_dir_name) else: returnsearch("E://code//trunc//src//video//","Debug")search("E://code//trunc//src//video//","Release")
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表