Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IFilter replacement

I'm currently using IFilters to extract text from various file (word, excel, tiff, pdf etc). I understand that IFilters have been discontinued with Windows 8. Does anyone have any recommendations on how to extract text without the native apps being installed? If it's any use I'm using C# and .Net 4

like image 941
making Avatar asked Nov 22 '12 23:11

making


1 Answers

IFilter is not discontinued. Only the Windows Indexing Service is discontinued in favor of Windows Search or Microsoft Search Server. Both continue to use IFilters.

According to this documentation, the main point of compatibility for IFilters going forward are that they support the IPersistStream interface. All modern implementations should avoid requiring IPersistStorage, so they don't have to access the disk themselves.

like image 120
Matt Johnson-Pint Avatar answered Sep 20 '22 23:09

Matt Johnson-Pint