我想找到所有带有特定结尾扩展名(“ .ive”)的文件,所以我找到了一个可以提供帮助的代码,但它找到了我所有名称中包含“ ive”的文件,我只希望文件结尾为“ .ive”。
能帮我吗?
有我的代码:
iveFiles=[]
for r, d, m in os.walk(path):
for file in m:
if '\*.ive' in file:
iveFiles.append(os.path.join(r, file))
for file in iveFiles:
with open(filePath,"w") as out_file:
for file in iveFiles :
out_file.write(file+'\n')
我有这样的文件(Apartment06.ive_fixed.ive_fixed.ive.html),但实际上我只想要这样的文件(Apartment06.ive_fixed.ive_fixed.ive)