Freshman
Registered User.
- Local time
- Today, 15:16
- Joined
- May 21, 2010
- Messages
- 437
Hi all,
I'm using the code below to convert all pdf files in a folder to txt (in bulk).
The metode below uses MS Word to do the job but since I have hundreds of files to convert I was wondering if there might be a faster way.
I don't want to use one of the many online/website option since I need to have it in code in my application since it will be an ongoing and automated project.
I had a look at JavaScript but there you also have to first upload the pdf file before converting them.
I need something for local files for which the routine below is perfect but just slow.
Thanks a lot
I'm using the code below to convert all pdf files in a folder to txt (in bulk).
The metode below uses MS Word to do the job but since I have hundreds of files to convert I was wondering if there might be a faster way.
I don't want to use one of the many online/website option since I need to have it in code in my application since it will be an ongoing and automated project.
I had a look at JavaScript but there you also have to first upload the pdf file before converting them.
I need something for local files for which the routine below is perfect but just slow.
Thanks a lot
Code:
Public Sub convertPDFtoText()
Const filePath As String = "C:\PDFTest\"
Dim file As String, FileName As String
Dim myWord As Word.Application, myDoc As Word.Document
Set myWord = New Word.Application
file = Dir(filePath & "*.pdf")
myWord.DisplayAlerts = wdAlertsNone
Do While file <> ""
FileName = Replace(file, "pdf", "txt")
Set myDoc = myWord.Documents.Open(FileName:=filePath & file, ConfirmConversions:=False, Format:="PDF Files")
myDoc.SaveAs2 filePath & FileName, FileFormat:=wdFormatText, Encoding:=1252, lineending:=wdCRLF
myDoc.Close False
file = Dir
Loop
Set myDoc = Nothing
Set myWord = Nothing
MsgBox "Done", vbInformation, "Notice"
End Sub