SDK: What attributes are indexed?

Plug-in and third party software discussion.
Post Reply
NotNull
Posts: 5260
Joined: Wed May 24, 2017 9:22 pm

SDK: What attributes are indexed?

Post by NotNull »

Just wondering ...


Does the SDK have an API to list what file attributes are indexed? Does not look that way.

Querying Everything for non-indexed attributes (like Date Created for example) does not have much added value compared to querying the filesystem for these yourself ( I guess).

So querying what is indexed before requesting just the indexed attributes will make self-written applications faster?


Or do the API's only return indexed data?
void
Developer
Posts: 15349
Joined: Fri Oct 16, 2009 11:31 pm

Re: SDK: What attributes are indexed?

Post by void »

To check if a basic file property is indexed:

Everything_IsFileInfoIndexed



Only indexed information is returned.
If you request date created and it is not indexed you will receive the empty date modified value (QWORD_MAX).
NotNull
Posts: 5260
Joined: Wed May 24, 2017 9:22 pm

Re: SDK: What attributes are indexed?

Post by NotNull »

And I thought I checked them all ...

Thanks!
Post Reply