当前位置:   article > 正文

python:遍历文件夹下的文件_python遍历文件夹所有文件

python遍历文件夹所有文件
import os

def test_findfile(directory, fileType, file_prefix):

fileList = []
for root, subDirs, files in os.walk(directory):
  for fileName in files:
    if fileName.endswith(fileType) and fileName.startswith(file_prefix):
      fileList.append(os.path.join(root, fileName))
return fileList

 

def list_filess():
  dir="C:\\Git\\moxyrulesnewui_python1\\org\\adv\\rules\\UIAutomation\\testcase\\"
  fileType=".py" # python 文件
  file_pre="test_" # 文件以tes_开头
  fileList = test_findfile(dir, fileType,file_pre)
  # print(fileList)
  for item in fileList:
    print(item)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/319461
推荐阅读
相关标签
  

闽ICP备14008679号