How to merge pdf files from 3 different folders?

Hi All,

I want to merge 3 pdf files (where present in 3 different folders)

For example: C:\User\Documents\Pdf1.pdf
D:\ProjectName\Pdf2.pdf
D:\Automation\Pdf3.pdf
I need to merge the 3 pdf’s from path as above and save it in the folder:
C:\User\Documents\MergedPdf.pdf

How to do this??

Use Path Exists activity for each file you want to merge and get the output of the activities into a folder.

Use Merge PDFs activity for the package.

Pass PDF Files list IResources like this.

New List(Of IResource) From {iResourceFileOne, iResourceFileTwo}

That’s it!