SDK Question

Plug-in and third party software discussion.
Post Reply
daspud
Posts: 103
Joined: Wed Apr 01, 2009 3:15 am

SDK Question

Post by daspud »

I am revising my old search program (predates SE by a long shot). I am wanting to add SE for those drives that can benefit using the SDK. I have the interface working but wanted to refine it by checking the drive in the search request (if there is one) with the list of drives that SE is scanning. If not in that list then do a "traditional" search.

BUT, I am not seeing a way to get the list of drives from the SDK. Am I missing something?

Thanks again and again for what has to be one of the most useful windows tools.

Bob Roos
void
Developer
Posts: 15098
Joined: Fri Oct 16, 2009 11:31 pm

Re: SDK Question

Post by void »

There is no SDK function to get a list of the drives Everything has indexed.

Are you after a function like one of the following?
BOOL IsNTFSVolumeIndexed(TCHAR *volume)?
-or-
TCHAR **GetIndexedNTFSVolumes(void)?



You can currently search for

Code: Select all

root:
to get a list of all the NTFS volumes, folders and file lists indexed.
daspud
Posts: 103
Joined: Wed Apr 01, 2009 3:15 am

Re: SDK Question

Post by daspud »

void wrote:...BOOL IsNTFSVolumeIndexed(TCHAR *volume)?...
this would work well for me. Not sure what others might want.

I will try the root: thing for now.

Thanks. :)
Post Reply