码迷,mamicode.com
首页 > 编程语言 > 详细

python 删除文件夹

时间:2019-01-30 13:08:14      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:style   pre   empty   module   call   spl   ast   python2.7   方法   

 

只能删除空文件夹,删除非空文件夹会报错

>>> import os
>>> os.rmdir("/tmp/ssh-GyoPWOFZ47")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OSError: [Errno 39] Directory not empty: /tmp/ssh-GyoPWOFZ47

>>> os.removedirs("/tmp/ssh-GyoPWOFZ47") Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python2.7/os.py", line 170, in removedirs rmdir(name) OSError: [Errno 39] Directory not empty: /tmp/ssh-GyoPWOFZ47

 

经测试下面的方法,可以删除非空文件夹

>>> import shutil
>>> shutil.rmtree("/tmp/ssh-GyoPWOFZ47")
>>> 
>>> exit()

这里只删除了 ssh-GyoPWOFZ47 文件夹

python 删除文件夹

标签:style   pre   empty   module   call   spl   ast   python2.7   方法   

原文地址:https://www.cnblogs.com/sea-stream/p/10337324.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!