查找tif文件
import os
def search(path=".", name=""):#path你输入的文件夹,name你要找的字符
for item in os.listdir(path):#item进入path目录里面
item_path = os.path.join(path, item)#加深目录
if os.path.isdir(item_path):#如果是文件夹就进去搜寻是否有tif文件,没有就在加深目录
search(item_path, name)
elif os.path.isfile(item_path):
if name in item:#判断tif是否在item中,是才输出
a,b=os.path.splitext(item)
if name not in a:#排除多余的误判
os.chdir(path)#定位在找见文件的目录中
if not os.path.exists('R' and 'P' ):#判断是否有此目录
os.mkdir('R')#创建目录
os.mkdir('P')
print(item)
search(path=r"G:\RCverify\notNOR", name=".tif")