Python os.walk() 方法
python os.walk() 方法
os.walk() 方法用于通過在目錄樹中游走輸出在目錄中的文件名,向上或者向下。
os.walk() 方法是一個簡單易用的文件、目錄遍歷器,可以幫助我們高效的處理文件、目錄方面的事情。
在unix,windows中有效。
語法
walk()方法語法格式如下:
os.walk(top[, topdown=true[, onerror=none[, followlinks=false]]])
參數(shù)
- top -- 是你所要遍歷的目錄的地址, 返回的是一個三元組(root,dirs,files)。
- root 所指的是當(dāng)前正在遍歷的這個文件夾的本身的地址
- dirs 是一個 list ,內(nèi)容是該文件夾中所有的目錄的名字(不包括子目錄)
- files 同樣是 list , 內(nèi)容是該文件夾中所有的文件(不包括子目錄)
- topdown --可選,為 true,則優(yōu)先遍歷 top 目錄,否則優(yōu)先遍歷 top 的子目錄(默認(rèn)為開啟)。如果 topdown 參數(shù)為 true,walk 會遍歷top文件夾,與top 文件夾中每一個子目錄。
- onerror -- 可選,需要一個 callable 對象,當(dāng) walk 需要異常時,會調(diào)用。
- followlinks -- 可選,如果為 true,則會遍歷目錄下的快捷方式(linux 下是軟連接 symbolic link )實際所指的目錄(默認(rèn)關(guān)閉),如果為 false,則優(yōu)先遍歷 top 的子目錄。
返回值
返回生成器。
實例
以下實例演示了 walk() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os for root, dirs, files in os.walk(".", topdown=false): ? ? for name in files: ? ? ? ? print(os.path.join(root, name)) ? ? for name in dirs: ? ? ? ? print(os.path.join(root, name))
執(zhí)行以上程序輸出結(jié)果為:
./.bash_logout ./amrood.tar.gz ./.emacs ./httpd.conf ./www.tar.gz ./mysql.tar.gz ./test.py ./.bashrc ./.bash_history ./.bash_profile ./tmp ./tmp/test.py
相關(guān)文章
- Python 簡介
- Python 中文編碼
- Python while 循環(huán)語句
- Python 字典 Dictionary
- Python OS 文件/目錄方法
- Python 網(wǎng)絡(luò)編程
- Python GUI編程 Tkinter
- Python2 與 Python3?? 版本區(qū)別
- Python 二維數(shù)組
- Python 集合
- Python Deque
- Python 高級鏈表
- Python 二叉樹
- Python 圖形
- Python3 數(shù)據(jù)類型
- Python3 解釋器
- Python3 列表(List)
- Python3 函數(shù)
- Python3 作用域
- Python3 網(wǎng)絡(luò)編程