python遍历查找文件夹中符合要求的文件 python遍历查找特定文件夹

主机教程 建站分享 2年前 (2022-11-21) 205次浏览

文章摘要:python遍历查找文件夹中符合要求的文件 python遍历查找特定文件夹

在python中使用遍历查找出文件夹中符合要求的文件,具体方法如下: import os import str […]

在python中使用遍历查找出文件夹中符合要求的文件,具体方法如下:

import os

import string

inputFilePath= "G:\aaa\shixun_data"

threefile = [ ]

key = "ND"

for file in os.listdir(inputFilePath):

if os.path.splitext(file)[1] == '.tif': # 查找.tif文件

if string.find(file, key) != -1: # 满足条件往下进行

sourcefile = os.path.join(inputFilePath, file) # 拼路径

threefile.append(sourcefile)

print threefile


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:python遍历查找文件夹中符合要求的文件 python遍历查找特定文件夹
文章链接:http://www.7966.org/post/13652.html
转载请注明出处

喜欢 (0)