我是靠谱客的博主 高兴夕阳,最近开发中收集的这篇文章主要介绍shutil.rmtree(path, ignore_errors=False, onerror=None)shutil.rmtree(path, ignore_errors=False, οnerrοr=None),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部