2017-02-24 65 views
1

我想使用bytescout將多個pdf文件轉換爲excel pdf提取器任何人都可以幫助我。我能夠提取單個PDF文件。 但是,我正在爲多個文件做錯誤。vb.net將多個PDF文件轉換爲Excel使用Bytescout pdf提取器

這是我得到的錯誤。

enter image description here

這裏是我的代碼。

Imports System.Threading 
    Imports Bytescout.PDFExtractor 
    Imports System.IO 

    Module Module1 

    Sub Main() 


     Try 

      Dim extractor As New CSVExtractor() 
      extractor.RegistrationName = "demo" 
      extractor.RegistrationKey = "demo" 

      'Dim filenames1 As String() = Directory.GetFiles(Path, "*.TXT") 
      For Each f In Directory.GetFiles(My.Computer.FileSystem.CurrentDirectory & "\PDF Files\", "*.PDF", SearchOption.TopDirectoryOnly) 

       extractor.LoadDocumentFromFile(f) 


       extractor.SaveCSVToFile(My.Computer.FileSystem.CurrentDirectory & "\CSV Files\"(f)) 

       Console.WriteLine("Data has been extracted to CSV file....!" & Environment.NewLine) 

      Next 

      Thread.Sleep(3000) 

     Catch error_t As Exception 
      Console.WriteLine(error_t.ToString) 
      Console.ReadKey(True) 
     End Try 


    End Sub 

End Module 
+1

創建它們什麼是錯誤? –

+0

請閱讀[問]並參加[導覽]。 「我得到錯誤」對我們並不是很有用;問題必須包括問題中的實際錯誤文本,需要一些努力來解決問題並提出實際問題。 – Plutonix

回答

0

根據錯誤信息the given path's format is not supported請你確認是輸出路徑是正確的?如果路徑文件夾或子文件夾不存在,則應先使用System.IO.Directory.CreateDirectory