概述
shutil.rmtree(path, ignore_errors=False, οnerrοr=None)
函数功能及用法:
删除整个path指向的整个目录树;
path必须指向一个目录(而不是指向目录的符号链接);
如果ignore_errors=True,清除失败导致的错误将会被忽略;如果ignore_errors=False,清除失败时将会调用由onerrors指定的程序来处理此类错误;如果忽略这一参数设定,清除失败时将会弹出一个exception。
应用(我遇到的实例):
import shutil
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('--model_dir', type=str, default='./model',
help='Base directory for the model.')
parser.add_argument('--clean_model_dir', action='store_true',
help='Whether to clean up the model directory if present.')
FLAGS, unparsed = parser.parse_known_args()
if FLAGS.clean_model_dir:
shutil.rmtree(FLAGS.model_dir, ignore_errors=True)
这样就会将./model文件夹全部删除。
最后
以上就是高兴夕阳为你收集整理的shutil.rmtree(path, ignore_errors=False, onerror=None)shutil.rmtree(path, ignore_errors=False, οnerrοr=None)的全部内容,希望文章能够帮你解决shutil.rmtree(path, ignore_errors=False, onerror=None)shutil.rmtree(path, ignore_errors=False, οnerrοr=None)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复