自学内容网 自学内容网

用python 将多个docx合并成一个docx

将 Word 文档合并到新页面意味着将多个 Word 文档合并为一个文档,每个合并的文档都从新页面开始。这种方法可确保合并的文档之间有明确的区分,提供视觉清晰度,并使内容导航更加容易。

下面是一个简单的示例,展示了如何使用 Python 和 Spire.Doc for Python 在新页面上合并 Word 文档:

pip install Spire.Doc

from spire.doc import *
from spire.doc.common import *

# Create a Document object
destDoc = Document()
# Load the destination document
destDoc.LoadFromFile("File1.docx")

# Store the paths of the source documents to be merged in a list
files_to_merge = ["File2.docx", "File3.docx"]

# Loop through the list
for file in files_to_merge:
    # Load the source document
    sourceDoc = Document()
    sourceDoc.LoadFromFile(file)
    # Import the content from the document into the destination document
    destDoc.ImportContent(sourceDoc)

# Save the result document
destDoc.SaveToFile("MergeDocumentsOnNewPage.docx", FileFormat.Docx2016)
destDoc.Close()
sourceDoc.Close()

https://medium.com/@alice.yang_10652/merge-word-documents-into-one-with-python-9ba9f68a04f2


原文地址:https://blog.csdn.net/v6543210/article/details/140573633

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!