How do I open the "My Documents" and "My Computer" folders from C#?
c#, shortcut
Solution
Better still would be to skip `explorer` entirely and just "start" the GUIDs directly:
`Process.Start("::{20d04fe0-3aea-1069-a2d8-08002b30309d}");`...
Problem
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.