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?
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"
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"