doc转docx文档批量转换格式python脚本

  • A+
所属分类:python基础入门

doc转docx文档批量转换格式python脚本源码

  1. import os
  2. from win32com import client
  3. def getfile():
  4.     for root, dirs, files in os.walk(os.getcwd()):
  5.         for file in files:
  6.             if file[-4:] == '.doc' and '~$' not in file:
  7.                 print('正在转换 {}'.format(os.path.join(root, file)))
  8.                 word = client.Dispatch('Word.Application')
  9.                 doc = word.Documents.Open(os.path.join(root, file))
  10.                 doc.SaveAs(os.path.join(root, file[:-4]), 12, False, "", True, "", FalseFalseFalse,
  11.                            False)  # 转化后路径下的文件
  12.                 doc.Close()
  13. getfile()
weinxin
我的微信公众号
爱真理,得永生!          爱在灵灵久博客,网罗天下,福利大家!

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: