今天有個(gè)腳本需要遍歷獲取某指定文件夾下面的所有文件,我記得很早前也實(shí)現(xiàn)過(guò)文件遍歷和目錄遍歷的功能,于是找來(lái)看一看,嘿,不看不知道,看了嚇一跳,原來(lái)之前我竟然用了這么搓的實(shí)現(xiàn)。
為潁上等地區(qū)用戶提供了全套網(wǎng)頁(yè)設(shè)計(jì)制作服務(wù),及潁上網(wǎng)站建設(shè)行業(yè)解決方案。主營(yíng)業(yè)務(wù)為成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作、潁上網(wǎng)站設(shè)計(jì),以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠(chéng)的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會(huì)得到認(rèn)可,從而選擇與我們長(zhǎng)期合作。這樣,我們也可以走得更遠(yuǎn)!先發(fā)出來(lái)看看:
def getallfiles(dir):
"""遍歷獲取指定文件夾下面所有文件"""
if os.path.isdir(dir):
filelist = os.listdir(dir)
for ret in filelist:
filename = dir + "\\" + ret
if os.path.isfile(filename):
print filename
def getalldirfiles(dir, basedir):
"""遍歷獲取所有子文件夾下面所有文件"""
if os.path.isdir(dir):
getallfiles(dir)
dirlist = os.listdir(dir)
for dirret in dirlist:
fullname = dir + "\\" + dirret
if os.path.isdir(fullname):
getalldirfiles(fullname, basedir)
我是用了 2 個(gè)函數(shù),并且每個(gè)函數(shù)都用了一次 listdir,只是一次用來(lái)過(guò)濾文件,一次用來(lái)過(guò)濾文件夾,如果只是從功能實(shí)現(xiàn)上看,一點(diǎn)問(wèn)題沒(méi)有,但是這…太不優(yōu)雅了吧。
開(kāi)始著手優(yōu)化,方案一:
def getallfiles(dir):
"""使用listdir循環(huán)遍歷"""
if not os.path.isdir(dir):
print dir
return
dirlist = os.listdir(dir)
for dirret in dirlist:
fullname = dir + "\\" + dirret
if os.path.isdir(fullname):
getallfiles(fullname)
else:
print fullname
從上圖可以看到,我把兩個(gè)函數(shù)合并成了一個(gè),只調(diào)用了一次 listdir,把文件和文件夾用 if~else~ 進(jìn)行了分支處理,當(dāng)然,自我調(diào)用的循環(huán)還是存在。
有木有更好的方式呢?網(wǎng)上一搜一大把,原來(lái)有一個(gè)現(xiàn)成的 os.walk() 函數(shù)可以用來(lái)處理文件(夾)的遍歷,這樣優(yōu)化下就更簡(jiǎn)單了。
方案二:
def getallfilesofwalk(dir):
"""使用listdir循環(huán)遍歷"""
if not os.path.isdir(dir):
print dir
return
dirlist = os.walk(dir)
for root, dirs, files in dirlist:
for file in files:
print os.path.join(root, file)
只是從代碼實(shí)現(xiàn)上看,方案二是最優(yōu)雅簡(jiǎn)潔的了,但是再翻看 os.walk() 實(shí)現(xiàn)的源碼就會(huì)發(fā)現(xiàn),其實(shí)它內(nèi)部還是調(diào)用的 listdir 完成具體的功能實(shí)現(xiàn),只是它對(duì)輸出結(jié)果做了下額外的處理而已。
附上os.walk()的源碼:
from os.path import join, isdir, islink
# We may not have read permission for top, in which case we can't
# get a list of the files the directory contains. os.path.walk
# always suppressed the exception then, rather than blow up for a
# minor reason when (say) a thousand readable directories are still
# left to visit. That logic is copied here.
try:
# Note that listdir and error are globals in this module due
# to earlier import-*.
names = listdir(top)
except error, err:
if onerror is not None:
onerror(err)
return
dirs, nondirs = [], []
for name in names:
if isdir(join(top, name)):
dirs.append(name)
else:
nondirs.append(name)
if topdown:
yield top, dirs, nondirs
for name in dirs:
path = join(top, name)
if followlinks or not islink(path):
for x in walk(path, topdown, onerror, followlinks):
yield x
if not topdown:
yield top, dirs, nondirs
至于 listdir 和 walk 在輸出時(shí)的不同點(diǎn),主要就是 listdir 默認(rèn)是按照文件和文件夾存放的字母順序進(jìn)行輸出,而 walk 則是先輸出頂級(jí)文件夾,然后是頂級(jí)文件,再輸出第二級(jí)文件夾,以及第二級(jí)文件,以此類推,具體大家可以把上面腳本拷貝后自行驗(yàn)證。
以上,如果覺(jué)得有用,請(qǐng)幫忙轉(zhuǎn)發(fā)分享,不甚感激。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。
網(wǎng)頁(yè)題目:使用Python實(shí)現(xiàn)文件遞歸遍歷的3種方式-創(chuàng)新互聯(lián)
新聞來(lái)源:http://aaarwkj.com/article2/cojdoc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信公眾號(hào)、云服務(wù)器、網(wǎng)站營(yíng)銷、網(wǎng)站制作、品牌網(wǎng)站制作、電子商務(wù)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容