- A+
所属分类:python基础入门
- import os
- from win32com import client
- def getfile():
- for root, dirs, files in os.walk(os.getcwd()):
- for file in files:
- if file[-4:] == '.doc' and '~$' not in file:
- print('正在转换 {}'.format(os.path.join(root, file)))
- word = client.Dispatch('Word.Application')
- doc = word.Documents.Open(os.path.join(root, file))
- doc.SaveAs(os.path.join(root, file[:-4]), 12, False, "", True, "", False, False, False,
- False) # 转化后路径下的文件
- doc.Close()
- getfile()
我的微信公众号
爱真理,得永生! 爱在灵灵久博客,网罗天下,福利大家!