我是靠谱客的博主 俊逸滑板,最近开发中收集的这篇文章主要介绍python 删除非空目录,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述


点击(此处)折叠或打开

  1. #!/usr/bin/env python3
  2. # _*_coding:utf-8_*_
  3. # Auth by raysuen

  4. import os,sys

  5. def ForceRMDir(DirName):
  6.     ret = 0
  7.     try:
  8.         os.rmdir(os.path.abspath(DirName))
  9.     except FileNotFoundError as e:
  10.         print(e)
  11.         ret = 1
  12.     except OSError as e:
  13.         for i in os.listdir(os.path.abspath(DirName)):
  14.             if os.path.isfile("%s/%s"%(os.path.abspath(DirName),i)):
  15.                 os.remove("%s/%s"%(os.path.abspath(DirName),i))
  16.             else:
  17.                 ForceRMDir("%s/%s"%(os.path.abspath(DirName),i))
  18.     except Exception as e:
  19.         print(e)
  20.         return 2
  21.     finally:
  22.         if ret == 0:
  23.             os.rmdir(os.path.abspath(DirName))
  24.         return ret

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/28572479/viewspace-2157561/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/28572479/viewspace-2157561/

最后

以上就是俊逸滑板为你收集整理的python 删除非空目录的全部内容,希望文章能够帮你解决python 删除非空目录所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部