os.rmdir() 方法用于删除指定路径的目录。仅当这文件夹是空的才可以, 否则, 抛出OSError。
>>> import os
>>> path1 = "D:/files/detection"
>>> path2 = "D:/files/detection/test"
>>> os.rmdir(path1)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
OSError: [WinError 145] 目录不是空的。: 'D:/files/detection'
>>> os.rmdir(path2)
以上内容,如有错误敬请批评指正!