HI,
Can anyone suggest a best way of looping through the multiple PDF’s (reading data) from local drive and Comparing with the excel data.
Please suggest me as good possible way to approach.
Thank you
HI,
Can anyone suggest a best way of looping through the multiple PDF’s (reading data) from local drive and Comparing with the excel data.
Please suggest me as good possible way to approach.
Thank you
To loop through multiple pdfs that are in the same folder you can use Directory.GetFiles(filepath, “*.pdf”) to get all pdfs and then a for each loop to go through each one.
You can read the text from each pdf and compare it to your excel file and do some action based on what the values are.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.