作者:E4b9a6, 创建:2021-06-15, 字数:465, 已阅:69, 最后更新:2021-06-15
Python3递归获取目录下的所有文件(含子目录内的所有文件)
测试版本:Python3.6.9
import os
def get_list_by_folder(path):
list_name = []
for file in os.listdir(path):
file_path = os.path.join(path, file)
if not os.path.isdir(file_path):
list_name.append(file_path)
else:
list_name.extend(GetListByFolder(file_path))
return list_name
if __name__=='__main__':
file_list = get_list_by_folder("./")
print(file_list)