Python 遍历文件夹中的文件,并将文件放到列表中

最经刚开始接触Python,学习了用Python实现遍历文件夹里的文件(只遍历文件不要目录),并将这些文件放到一个列表中

废话不多说,直接上代码

def allDir(path):
    f=[]
    for root,dirs,files in os.walk(path):
        for filespath in files:
            print(os.path.join(root,filespath))
            f.append(os.path.join(root,filespath))

    print(f)
    return(f)

你可能感兴趣的:(python)