I have used two GUIDs to open the folders My Computer and My Documents.
Process.Start("iexplore.exe", "::{20d04fe0-3aea-1069-a2d8-08002b30309d}");
Process.Start("iexplore.exe", "::{450d8fba-ad25-11d0-98a8-0800361b1103}");
But it opens Internet Explorer and then opens the folders My Computer and My Documents.
I had to open MyDocuments and based on comments above I narrowed down the solution to open Explorer without side effects:
I tested it on Windows Server 2008 R2.
Using those hard coded Guid values doesn't look like the best way of achieving this.
You could use the Environment.GetFolderPath function to get the path of any of the system special folders. It accepts an Environment.SpecialFolder enum.
This way it'd be more robust, because you wouldn't have any "magic" hardcoded values.
Here's how you'd use it:
Important note for Windows 7 users
It seems that trying to use this code to open My Computer on Windows 7 incorrectly results in the Libraries folder being opened instead. This is because the default behaviour of running explorer with an empty path has changed in Windows 7.
I've filed the following bug report over at connect, go and give it an upvote if you think that this is important!
https://connect.microsoft.com/VisualStudio/feedback/details/757291/environment-getfolderpath-not-working-correctly-in-windows-7#details
(Thanks to JeremyK in the comments for pointing this out)
Try explorer.exe:
I know it looks doubtful but just run it. It'll work. This is the code for my computer. I don't know what it should be for My Documents.
This does not work for my Vista:
as Environment.SpecialFolder.MyComputer returns "" and Process.Start("explorer", "") opens My Documents.
The GUID seems to do it, though:
Samdoss
Just enter the
Its very easy. Try that.