import os
# 列出当前目录下所有的文件
path='C:\\xxx\\xxx\\xxx\\xxxx'
files = os.listdir(path) # 如果path为None,则使用path = '.'
print(files)
for filename in files:
portion = os.path.splitext(filename) # 分离文件名与扩展名
# 如果后缀是jpg
if portion[1] == '.xls':
# 重新组合文件名和后缀名
newname = portion[0] + '.xlsx'
os.rename(filename, newname)
使用方法打开文件夹输入cmd
执行pythonj脚本
结束