最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

使用 Python 實現(xiàn)文件遞歸遍歷的三種方式

 更新時間:2018年07月18日 10:20:55   作者:sylan215  
這篇文章主要介紹了使用 Python 實現(xiàn)文件遞歸遍歷的三種方式,非常不錯,具有一定的參考借鑒價值,需要的朋友參考下吧

今天有個腳本需要遍歷獲取某指定文件夾下面的所有文件,我記得很早前也實現(xiàn)過文件遍歷和目錄遍歷的功能,于是找來看一看,嘿,不看不知道,看了嚇一跳,原來之前我竟然用了這么搓的實現(xiàn)。

先發(fā)出來看看:

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 個函數,并且每個函數都用了一次 listdir,只是一次用來過濾文件,一次用來過濾文件夾,如果只是從功能實現(xiàn)上看,一點問題沒有,但是這…太不優(yōu)雅了吧。

開始著手優(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

從上圖可以看到,我把兩個函數合并成了一個,只調用了一次 listdir,把文件和文件夾用 if~else~ 進行了分支處理,當然,自我調用的循環(huán)還是存在。

有木有更好的方式呢?網上一搜一大把,原來有一個現(xiàn)成的 os.walk() 函數可以用來處理文件(夾)的遍歷,這樣優(yōu)化下就更簡單了。

方案二:

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)

只是從代碼實現(xiàn)上看,方案二是最優(yōu)雅簡潔的了,但是再翻看 os.walk() 實現(xiàn)的源碼就會發(fā)現(xiàn),其實它內部還是調用的 listdir 完成具體的功能實現(xiàn),只是它對輸出結果做了下額外的處理而已。

附上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 在輸出時的不同點,主要就是 listdir 默認是按照文件和文件夾存放的字母順序進行輸出,而 walk 則是先輸出頂級文件夾,然后是頂級文件,再輸出第二級文件夾,以及第二級文件,以此類推,具體大家可以把上面腳本拷貝后自行驗證。

總結

以上所述是小編給大家介紹的使用 Python 實現(xiàn)文件遞歸遍歷的三種方式,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網站的支持!

相關文章

最新評論

广汉市| 新昌县| 黄石市| 孟连| 莒南县| 浑源县| 安国市| 奇台县| 景德镇市| 云浮市| 茶陵县| 农安县| 鹤山市| 来凤县| 达拉特旗| 军事| 隆昌县| 通辽市| 浮梁县| 秦安县| 永吉县| 河源市| 饶河县| 丰顺县| 馆陶县| 杂多县| 鞍山市| 南木林县| 孙吴县| 滕州市| 广饶县| 麦盖提县| 保康县| 贡嘎县| 微山县| 湄潭县| 靖安县| 房产| 祥云县| 青冈县| 华阴市|