Access a folder and group PDF

I’m a beginner…

I need to access a folder on my C :, when I get there I need to group all the pdfs that are in that folder and upload this single file to another site.

Is there an easy and optimized way to access the folder in C:?
Is there an easy and optimized way to group the pdfs that are in the folder?

@Guilas - Yes, You can use the below activity which is avaiable in the pdf package to group all the pdfs to a single pdf…

Directory.GetFiles("Your Folder Path").OrderBy(Function(d) New FileInfo(d).CreationTime).ToArray

This will put your files in the order in which was created.

Hope this helps…

excellent, thank you very much

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.