python os.walk()
os.walk(),在目录树中游走,输出目录中的文件名
os.walk(top,topdown,onerror,followlinks)
top--需要遍历的目录地址,返回的是一个三元组(root,dirs,files)
root--要遍历的文件夹的地址
dirs--是一个list,文件夹中目录的名字(不包括子目录)
files--是一个list,文件夹中所有的文件(不包括子目录)
topdown --可选,为 True,则优先遍历 top 目录,否则优先遍历 top 的子目录(默认为开启)。如果 topdown 参数为 True,walk 会遍历top文件夹,与top 文件夹中每一个子目录。
onerror -- 可选, 需要一个 callable 对象,当 walk 需要异常时,会调用。
followlinks -- 可选, 如果为 True,则会遍历目录下的快捷方式(linux 下是 symbolic link)实际所指的目录(默认关闭)。
import os for root,dirs,files in os.walk("C:\Temp"): for name in files: print(os.path.join(root,name)) for name in dirs: print(os.path.join(root,name))