The Everything_SortResultsByPath function sorts the current results by path, then file name.
SortResultsByPath is CPU Intensive. Sorting by path can take several seconds.
void Everything_SortResultsByPath(void);
This functions has no parameters.
This function has no return value.
The default result list contains no results.
Call Everything_Query to retrieve the result list prior to a call to Everything_SortResultsByPath.
For improved performance, use [Everything/SDK/Everything_SetSort|Everything_SetSort]]
// set the search text to abc AND 123
Everything_SetSearch(\"abc 123\");
// execute the query
Everything_Query(TRUE);
// sort the results by path
Everything_SortResultsByPath();