在python中禁用excel中的兼容性检查

时间:2019-03-18 14:49:25

标签: python excel

如何修改此程序以不检查excel文件的兼容性?

import glob
from win32com.client import Dispatch

for file in glob.glob('C:\Users\igyulavics\Desktop\GYI_python\proba_tervek\*.xlsx'):
    xl = Dispatch('Excel.Application')
    wb = xl.Workbooks.Add(file)
    wb.SaveAs(file[:-1], FileFormat=56)
    xl.Quit()

0 个答案:

没有答案