I have a bunch of pdf files (around 10K files) stored in a folder, all these pdf files are generated by a reporting tool and ready to be printed. Depending on the file name, I need to print each of these pdf files using a .Net program. I want to print pdf files as silently as possible, I don't want to read or modify pdf files.
Based on the research I have found following methods to achieve my requirement.
Use RawPrinterHelper to send each files to printer
Use a Third party pdf library to load document and print it.
For the past few days I have been googling to find out the best method to perform silent batch printing of pdf files, I could not come to a conclusion.
Are you aware of any opensource pdf library to print pdf files?