Python遍历文件夹下所有文件,并返回文件绝对地址列表
作者:互联网
Python遍历文件夹下所有文件,并返回文件绝对地址列表
import os
def dirlist(path):
allfile = []
filelist = os.listdir(path)
for filename in filelist:
filepath = os.path.join(path, filename)
if os.path.isdir(filepath):
dirlist(filepath, allfile)
else:
allfile.append(filepath)
return allfile
标签:文件,dirlist,遍历,filepath,Python,allfile,path,os 来源: https://blog.csdn.net/qq_16674623/article/details/118873877