Is there are way to convert PDF to csv within R?
The Xpdf allows to convert within R to txt as:
system(paste('"C:/Program Files/Xpdf/pdftotext.exe"', '"C:/Documents and Settings/rM/Desktop/club.pdf"'), wait=FALSE)
Is there something like pdftocsv.exe as Xpdf pdftotext.exe?
I have large amount of PDF files so I'm looking for a way to loop through this files. Single file PDF to CSV could be done even with some online services but 100s clearly not.