Question how to search text in pdf file

chaoraksa

Member
Joined
May 25, 2009
Messages
5
Programming Experience
Beginner
Hi all!

Can anyone help me with search text in pdf file? First i need to search text in pdf file then compare it to a string. After that i wanna copy that pdf to a folder. That it.

Thanks,,
Raksa
 
This will help with the finding part.

VB.NET:
  My.Computer.FileSystem.FindInFiles(DirectoryName,ContainsThisText,False,FileIO.SearchOption.SearchAllSubDirectories)

This would be how to copy a file.
VB.NET:
My.Computer.FileSystem.CopyFile(sourceFile,destinationFile)

Not sure what you mean by
then compare it to a string
 
Back
Top