Python 3 – os.rmdir() 方法
描述
rmdir() 方法用于删除目录路径。只有当目录为空时才有效,否则将引发 OSError。
语法
rmdir() 方法的语法如下 –
os.rmdir(path)
参数
path - 这是要删除的目录路径。
返回值
此方法不返回任何值。
示例
以下示例展示了 rmdir() 方法的使用。
# !/usr/bin/python3
import os, sys
os.chdir("d:\\tmp")
# 打印目录列表
print ("the dir is: %s" %os.listdir(os.getcwd()))
# 删除路径
os.rmdir("newdir")
# 删除目录路径后打印目录列表
print ("the dir is:" %os.listdir(os.getcwd()))
结果
运行上述程序后,会产生以下结果。
the dir is: [
'Applicationdocs.docx', 'book.zip',
'Java Multiple Inheritance.htm', 'Java Multiple Inheritance_files',
'java.ppt', 'newdir', 'python2'
]
Traceback (most recent call last):
File "test.py", line 8, in <module>
os.rmdir("newdir")
OSError: [WinError 145] The directory is not empty: 'newdir'
出现错误是因为 ‘newdir’ 目录不为空。如果 ‘newdir’ 是一个空目录,则会产生以下结果。
the dir is: [
'Applicationdocs.docx', 'book.zip',
'Java Multiple Inheritance.htm', 'Java Multiple Inheritance_files',
'java.ppt', 'newdir', 'python2'
]
the dir is: [
'Applicationdocs.docx', 'book.zip',
'Java Multiple Inheritance.htm', 'Java Multiple Inheritance_files',
'java.ppt', 'python2'
]