写一段代码 找出文件夹里是文件格式是xls文件或xlsx文件 并跳过前缀有a的文件
时间: 2024-06-03 15:06:55 浏览: 41
读写xls 和 xlsx格式的excel文件
5星 · 资源好评率100%
import os
folder_path = "/path/to/folder"
for file_name in os.listdir(folder_path):
if file_name.startswith("a"):
continue
if file_name.endswith(".xls") or file_name.endswith(".xlsx"):
print(file_name)
阅读全文