The Everything_GetResultDateCreated function retrieves the created date of a visible result.
BOOL Everything_GetResultDateCreated(
DWORD dwIndex,
FILETIME *lpDateCreated
);
dwIndex
Zero based index of the visible result.
lpDateCreated
Pointer to a FILETIME to hold the created date of the result.
The function returns non-zero if successful.
The function returns 0 if the date created information is unavailable. To get extended error information, call Everything_GetLastError
Error code | Meaning |
---|---|
EVERYTHING_ERROR_INVALIDCALL | Call Everything_Query before calling Everything_GetResultDateCreated. |
EVERYTHING_ERROR_INVALIDREQUEST | Date created was not requested or is unavailable, Call Everything_SetRequestFlags with EVERYTHING_REQUEST_DATE_CREATED before calling Everything_Query. |
EVERYTHING_ERROR_INVALIDINDEX | index must be greater than or equal to 0 and less than the visible number of results. |
dwIndex must be a valid visible result index. To determine if a result index is visible use the Everything_GetNumResults function.
FILETIME dateCreated;
// set the search text to abc AND 123
Everything_SetSearch("abc 123");
// execute the query
Everything_Query(TRUE);
// Get the created date of the first visible result.
Everything_GetResultDateCreated(0,&dateCreated);
Requires Everything 1.4.1 or later.