How to Concatenate multiple word documents

Hi Can any one give me a solution for concatenating multiple word documents using Aspose.word dll

is there any similar method in Aspose.word Like below method in Aspose.pdf.kit

pdfFileEditor.Concatenate(pdfFiles.ToArray(), joinPdf);

Hi

Thanks for your request. Please see the following link to learn how to merge documents using Aspose.Words:
https://docs.aspose.com/words/net/insert-and-append-documents/
Also, please see the code example:

Document dstDoc = new Document("dst.doc");
Document srcDoc = new Document("src.doc");
// Insert srcDoc to dstDoc
dstDoc.AppendDocument(srcDoc, ImportFormatMode.KeepSourceFormatting);
dstDoc.Save("out.doc");
Hope this helps,

Best regards,

not able to access the link given in the above reply

Hi Deepak,

Thanks for your inquiry. Please refer to the following section of the documentation to learn this topic:
https://docs.aspose.com/words/net/insert-and-append-documents/

Best regards,