6

I want to make a crawler-like program that searches a file system and indexes the files [It will have a later use, But that's the main thing i focus on now].

I wonder if there's a way of using the Windows Indexer [Which already have some kind of index] to my use instead of running through the files which can take quite a long time?

Thanks.

StationaryTraveller
  • 1,449
  • 2
  • 19
  • 31

2 Answers2

2

This might help...

I know its a link to another page... But not having enough reputaion so that i can comment, hence, giving it in answers area..

Done using Lucene

Hope it might help you...

CoderNeji
  • 2,056
  • 3
  • 20
  • 31
  • It's same as above, Only a partial-solution. Since it's only a query. And querying each file i find through the crawler is just slightly faster than actually scanning the file. The main purpose of using the indexer is saving the crawler some 'scanning branches'. Thanks though. – StationaryTraveller Apr 08 '15 at 07:42
1

According to https://msdn.microsoft.com/en-us/library/ee805985(v=vs.85).aspx the windows indexing service is no longer supported and encourages anyone interested in carrying out client side search to use the Windows Search SDK https://msdn.microsoft.com/en-us/library/aa965362(v=vs.85).aspx