Python os.removedirs() 方法
python os.removedirs() 方法
os.removedirs() 方法用于遞歸刪除目錄。像rmdir(), 如果子文件夾成功刪除, removedirs()才嘗試它們的父文件夾,直到拋出一個(gè)error(它基本上被忽略,因?yàn)樗话阋馕吨阄募A不為空)。
語(yǔ)法
removedirs()方法語(yǔ)法格式如下:
os.removedirs(path)
參數(shù)
- path -- 要移除的目錄路徑
返回值
該方法沒(méi)有返回值
實(shí)例
以下實(shí)例演示了 removedirs() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 列出目錄 print "目錄為: %s" %os.listdir(os.getcwd()) # 移除 os.removedirs("/test") # 列出移除后的目錄 print "移除后目錄為 %s :" %os.listdir(os.getcwd())
執(zhí)行以上程序輸出結(jié)果為:
目錄為: [ 'a1.txt','resume.doc','a3.py','test' ] 移除后目錄為: [ 'a1.txt','resume.doc','a3.py' ]
相關(guān)文章
- Python 教程
- Python 中文編碼
- Python 基礎(chǔ)語(yǔ)法
- Python 函數(shù)
- Python 面向?qū)ο?/a>
- Python 正則表達(dá)式
- Python CGI編程
- Python 高級(jí)鏈表
- Python 二叉樹(shù)
- Python 分而治之
- Python 算法類
- Python 攤銷分析
- Python3 基礎(chǔ)語(yǔ)法
- Python3 列表(List)
- Python3 集合(Set)
- Python3 迭代器
- Python3 文件讀寫
- Python3 錯(cuò)誤和異常
- Python3 網(wǎng)絡(luò)編程
- Python3 XML 解析