I'm using Everything64.dll from the latest SDK zip.
When I request only the filename and path, things work as expected.
Code: Select all
Everything_SetRequestFlags(EVERYTHING_REQUEST_FILE_NAME | EVERYTHING_REQUEST_PATH)
Everything_SetSearch(...)
Everything_QueryW(True)
Everything_GetResultFileNameW(...)
But if I then add EVERYTHING_REQUEST_SIZE to the Everything_SetRequestFlags() call, leaving everything else exactly as before,
Code: Select all
Everything_SetRequestFlags(EVERYTHING_REQUEST_FILE_NAME | EVERYTHING_REQUEST_PATH | EVERYTHING_REQUEST_SIZE)
Everything_SetSearch(...)
Everything_QueryW(True)
Everything_GetResultFileNameW(...)
It's possible I'm doing something wrong ...