使用C#
在文档后添加新页合并
private void SaveToFileInsertText(string sourcePath, string insertPath, string saveToPath)
{
Document doc = new Document(sourcePath);
doc.InsertTextFromFile(insertPath, FileFormat.Docx);
doc.SaveToFile(saveToPath, FileFormat.Docx);
doc.Close();
}
private void SaveToFile