File system indexing

I am building an application: I need to scan a directory hive to find a specific file.

I also want to better understand how indexing works.

Can anyone point me to any resource, preferably in C #, that shows how I can create a base index for looking up the filesystem?

0


source to share


1 answer


So it looks like you need a library to do the search.



Lucene is a java search library that has been ported to C # .

+1


source







All Articles