How to run Windows Explorer from an application
-
I have been struggling to find information on how to achieve the following. My small app creates a folder on the file system. I then want to run an instance of Windows Explorer and show the folder. I want to do this in a way so that Explorer will keep running even after my app is terminated. I assume this is achievable and apologise if it is trivial. Cheers Tim
-
I have been struggling to find information on how to achieve the following. My small app creates a folder on the file system. I then want to run an instance of Windows Explorer and show the folder. I want to do this in a way so that Explorer will keep running even after my app is terminated. I assume this is achievable and apologise if it is trivial. Cheers Tim
TJO1 wrote:
apologise if it is trivial.
Nothing is trivial, until you know how to do it :-) Process.Start("c:\") should, I believe, open explorer at the c drive. I think it's in System.Threading.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
TJO1 wrote:
apologise if it is trivial.
Nothing is trivial, until you know how to do it :-) Process.Start("c:\") should, I believe, open explorer at the c drive. I think it's in System.Threading.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog