Search found 11 matches

by yemanqitipo
Fri Apr 21, 2023 2:03 am
Forum: Development, plugins and third party software
Topic: Everything_SetSearch param length limit
Replies: 1
Views: 5878

Everything_SetSearch param length limit

hi, just wondering is there a length limit of api Everything_SetSearch param ?
by yemanqitipo
Thu Feb 16, 2023 10:33 am
Forum: Support
Topic: Get file modify date with Local time
Replies: 2
Views: 1049

Re: Get file modify date with Local time

Got it. Thank you for reply.
by yemanqitipo
Thu Feb 16, 2023 9:58 am
Forum: Support
Topic: Get file modify date with Local time
Replies: 2
Views: 1049

Get file modify date with Local time

Hi, When calling Everything_GetResultDateModified in my program, i got the modify date of file in UTC。 Is there a modifer or option to get the local time. void CustomSearch(std::wstring regexStr, bool regexFlag) { DWORD i; const int MAX_TIME_LEN = 60; char strTime[MAX_TIME_LEN] = { 0x00 }; Everythin...
by yemanqitipo
Mon Feb 13, 2023 6:18 am
Forum: Support
Topic: How to use a filter with everything sdk
Replies: 4
Views: 1246

Re: How to use a filter with everything sdk

Got it. Thank you very much!
by yemanqitipo
Mon Feb 13, 2023 5:54 am
Forum: Support
Topic: How to use a filter with everything sdk
Replies: 4
Views: 1246

Re: How to use a filter with everything sdk

You cannot access filters with Everything 1.4 and the SDK. Have a look at the search for each filter and apply that search instead. For example, include the following in your search: 1. search the file list which category are Document ? ext:c;cc;chm;cpp;cs;css;csv;cxx;doc;docm;docx;dot;dotm;dotx;ep...
by yemanqitipo
Mon Feb 13, 2023 4:50 am
Forum: Support
Topic: How to use a filter with everything sdk
Replies: 4
Views: 1246

How to use a filter with everything sdk

Hi, everyone. I notice that there is an submenu named "Organize filters" in the everything gui, and also I can check one of file category in the memu "Search". I had a quick look of the everything api list, but found nothing. How I can use a filter with everything sdk . Two examp...
by yemanqitipo
Mon Feb 13, 2023 3:19 am
Forum: Development, plugins and third party software
Topic: get EVERYTHING_ERROR_INVALIDCALL when calling Everything_GetResultDateModified
Replies: 4
Views: 7172

Re: get EVERYTHING_ERROR_INVALIDCALL when calling Everything_GetResultDateModified

Please make sure Everything is running in the background. Please check your call to Everything_QueryW succeeds. Please call Everything_SetRequestFlags before calling Everything_Query and set the following flags: EVERYTHING_REQUEST_FILE_NAME | EVERYTHING_REQUEST_PATH | EVERYTHING_REQUEST_DATE_MODIFI...
by yemanqitipo
Sun Feb 12, 2023 4:24 pm
Forum: Development, plugins and third party software
Topic: get EVERYTHING_ERROR_INVALIDCALL when calling Everything_GetResultDateModified
Replies: 4
Views: 7172

Re: get EVERYTHING_ERROR_INVALIDCALL when calling Everything_GetResultDateModified

Thank you for your reply. 1. Everything_Query got some results. Actually, I got 8 when I call Everything_GetNumResults. 2. My code snippet: void CustomSearch(std::wstring regexStr, bool regexFlag) { DWORD i; const int MAX_TIME_LEN = 60; char strTime[MAX_TIME_LEN] = { 0x00 }; // execute the query Eve...
by yemanqitipo
Sun Feb 12, 2023 12:18 pm
Forum: Development, plugins and third party software
Topic: get EVERYTHING_ERROR_INVALIDCALL when calling Everything_GetResultDateModified
Replies: 4
Views: 7172

get EVERYTHING_ERROR_INVALIDCALL when calling Everything_GetResultDateModified

Hello everyone。 I want to get the modify time of a file which everything retrieves. when I call the api Everything_GetResultDateModified, I got error code EVERYTHING_ERROR_INVALIDCALL . I saw the doc , it says "Call Everything_Query before calling Everything_GetResultDateModified.". But I ...
by yemanqitipo
Sun Dec 18, 2022 4:55 am
Forum: Support
Topic: About everyrthing.exe process
Replies: 10
Views: 2245

About everyrthing.exe process

everything version: 1.4.1.1005 (x64)
I have two Machines. Both of them are windows 10.
When I double click everything.exe to run it, On one of my Machines there is only one everything.exe process, but the other there are two.
so what make that difference.
by yemanqitipo
Sat Dec 17, 2022 9:37 am
Forum: Support
Topic: Create new process and query. Cannot get result.
Replies: 1
Views: 860

Create new process and query. Cannot get result.

Hello, I hava a problem when calling everything sdk. Assuming there are no everything.exe processes on the machine now. So I create a new everything.exe process with CreateProcessA api. Then I call Everything_SetSearchW、Everything_QueryW、Everything_GetResultFullPathNameW in sequence. But I Can't get...