在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