which win32 api does [file>open path] use?

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
iamqz
Posts: 31
Joined: Wed Oct 05, 2022 2:34 pm

which win32 api does [file>open path] use?

Post by iamqz »

when a file is selected and click file>"open path" or press ctrl+enter, explorer will be opend and that file will be selected in explorer,
this is like cmd command : explorer.exe /select,"path/to/file"

I want to know which win32 api everything use?
thanks!
void
Developer
Posts: 17149
Joined: Fri Oct 16, 2009 11:31 pm

Re: which win32 api does [file>open path] use?

Post by void »

SHOpenFolderAndSelectItems

As a fallback:

%SystemRoot%\explorer.exe /n,/e,/select,"c:\Program Files\Everything"
iamqz
Posts: 31
Joined: Wed Oct 05, 2022 2:34 pm

Re: which win32 api does [file>open path] use?

Post by iamqz »

void wrote: Sun Dec 01, 2024 11:50 pm SHOpenFolderAndSelectItems

As a fallback:

%SystemRoot%\explorer.exe /n,/e,/select,"c:\Program Files\Everything"
good job! it works! thanks very much! :mrgreen:
Post Reply