python递归查找文件目录

时间:2023-03-09 13:20:26
python递归查找文件目录

# -*- coding:utf-8 -*-

import os

allfile = []
def get_all_file(path):
  allfilelist = os.listdir(path)
  for file in allfilelist:
    filepath = os.path.join(path, file)
    # 判断是否是文件夹
    if os.path.isdir(filepath):
      get_all_file(filepath)
    # 是文件就将路径添加到列表
    allfile.append(filepath)
  return allfile

path = 'E:/Git仓库'
allfiles = get_all_file(path)

for item in allfiles:
print(item)