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!
which win32 api does [file>open path] use?
-
void
- Developer
- Posts: 19901
- Joined: Fri Oct 16, 2009 11:31 pm
Re: which win32 api does [file>open path] use?
SHOpenFolderAndSelectItems
As a fallback:
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?
good job! it works! thanks very much!void wrote: Sun Dec 01, 2024 11:50 pm SHOpenFolderAndSelectItems
As a fallback:
%SystemRoot%\explorer.exe /n,/e,/select,"c:\Program Files\Everything"