Python os.rmdir() 方法
python os.rmdir() 方法
os.rmdir() 方法用于刪除指定路徑的目錄。僅當(dāng)這文件夾是空的才可以, 否則, 拋出oserror。
語法
rmdir()方法語法格式如下:
os.rmdir(path)
參數(shù)
- path -- 要?jiǎng)h除的目錄路徑
返回值
該方法沒有返回值
實(shí)例
以下實(shí)例演示了 rmdir() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 列出目錄 print "目錄為: %s"%os.listdir(os.getcwd()) # 刪除路徑 os.rmdir("mydir") # 列出重命名后的目錄 print "目錄為: %s" %os.listdir(os.getcwd())
執(zhí)行以上程序輸出結(jié)果為:
目錄為: [ 'a1.txt','resume.doc','a3.py','mydir' ] 目錄為: [ 'a1.txt','resume.doc','a3.py' ]
相關(guān)文章
- Python break 語句
- Python Number 數(shù)字
- Python 模塊
- Python 文件I/O
- Python 操作 MySQL 數(shù)據(jù)庫
- Python XML 解析
- Python IDE
- Python 棧
- Python 堆
- Python 圖形
- Python 排序算法
- Python 圖算法
- Python 算法類
- Python 算法理由
- Python3 列表(List)
- Python3 函數(shù)
- Python3 SMTP發(fā)送郵件
- Python3 多線程
- Python3 XML 解析
- Python3 MySQL 數(shù)據(jù)庫連接 - PyMySQL 驅(qū)動(dòng)