python修改word文件(doc)页眉页脚

网上搜这个问题,没有现成的答案,自己找了下,把代码记下
注:
我这里是修改的doc格式的word,不是docx
参考网址:Header and Footer — python-docx 0.8.9 documentation
python自动化办公:玩转word之页眉页脚秘笈 - 云+社区 - 腾讯云

#coding=utf8

import os

import docx

nowpath='需要修改的文件的路径'

topath='另存到的路径'

os.chdir(nowpath)

for iin os.listdir('.'):

    print(i)

    if os.path.splitext(i)[1]== '.doc':

        try:

            file=docx.Document(i)

            file.sections[0].header.paragraphs[0].text= '你要修改成的页眉'

            file.sections[0].footer.paragraphs[0].text= '你要修改成的页脚'

            file.save(os.path.join(topath,i))

        except Exception as e:

            print(e)

            continue

遇见的错误:
file 'xxxx.doc' is not a Word file, content type is 'application/vnd.openxmlformats-officedocument.themeManager+xml'
不是word格式的文件不能转

我的博客即将同步至腾讯云+社区,邀请大家一同入驻:https://cloud.tencent.com/developer/support-plan?invite_code=3125dlqjnk8wc

你可能感兴趣的:(python修改word文件(doc)页眉页脚)