excel.py 570 B

123456789101112131415161718192021
  1. import os
  2. import win32com.client
  3. def convert(path: str):
  4. excel_com = win32com.client.Dispatch("Excel.Application")
  5. excel_com.DisplayAlerts = False
  6. for file in filter(lambda x: x.endswith(".xls"), os.listdir(path)):
  7. print(file)
  8. fullname = path + "\\" + file
  9. excel_com.Workbooks.Open(fullname)
  10. excel_com.ActiveWorkbook.SaveAs(
  11. Filename=fullname + "x", ConflictResolution=True
  12. )
  13. excel_com.ActiveWorkbook.Close(True)
  14. if __name__ == "__main__":
  15. path = os.getcwd() + "\\Excel"
  16. convert(path)