本文介绍了python:删除非空dir的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这个目录可能嵌套了很多级别的子目录。
如何删除Python中可能非空的目录。 div class =h2_lin>解决方案
这个目录可能嵌套了很多级别的子目录。
如何删除Python中可能非空的目录。 div class =h2_lin>解决方案
使用:
$ b $ pre $ 导入shutil
shutil.rmtree(路径)
How do I delete a possibly non-empty dir in Python.
The directory may have nested subdirectories many levels deep.
Use shutil.rmtree
:
import shutil
shutil.rmtree(path)
See the documentation for details of how to handle and/or ignore errors.
这篇关于python:删除非空dir的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!