Python 如何遍历文件夹以及子文件夹下的所有文件

第一种

import os

def GetFileList(dir, fileList):
    newDir = dir
    if os.path.isfile(dir):
        fileList.append(dir.decode('gbk'))
    elif os.path.isdir(dir):  
        for s in os.listdir(dir):
            #如果需要忽略某些文件夹,使用以下代码
            #if s == "xxx":
                #continue
            newDir=os.path.join(dir,s)
            GetFileList(newDir, fileList)  
    return fileList

list = GetFileList('D:\\workspace\\PyDemo\\fas', [])
for e in list:
    print e

第二种

import os

def iterbrowse(path):
    for home, dirs, files in os.walk(path):
        for filename in files:
            yield os.path.join(home, filename)


for fullname in iterbrowse("F:\\JDdata\\images\\training"):
    #fullname是绝对路径
    #print fullname 
    filename=os.path.basename(fullname)
    #filename是目录下的所有文件名
    print filename
os.system("pause")

你可能感兴趣的:(python,遍历)