How do you open a path in explorer by code in c++. I googled and couldn't find any thing but systems commands to do this, however, i dont want it to block or show the console window.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You probably are looking for the ShellExecute() function in shell32.h. It is called with an "action verb", a path, and optional parameters. In your case this will want either "open" or "explore" as follows:
This will open an unattached explorer window at C:. ShellExecute() will give basically the same action as typing in a command at the Run dialog. It will also handle URLs, so the following will open up the user's default browser:
Although make sure to pay attention to the note in the documentation that ShellExecute relies on COM (Although your code doesn't have to worry about any COM objects itself).
|
|||||||
|
|
This does not show the command window, just opens the directory.
|
|||
|
|