How do I open the “My Documents” and “My Computer” folders from C#?

旧城冷巷雨未停 提交于 2019-11-29 11:31:26

Better still would be to skip explorer entirely and just "start" the GUIDs directly:

Process.Start("::{20d04fe0-3aea-1069-a2d8-08002b30309d}");...

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:

//get the folder paths
string myComputerPath = Environment.GetFolderPath(Environment.SpecialFolder.MyComputer);
string myDocumentsPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
//open explorer and point it at the paths
System.Diagnostics.Process.Start("explorer", myComputerPath);
System.Diagnostics.Process.Start("explorer", myDocumentsPath);

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)

Have you tried:

Process.Start("explorer.exe", "::{20d04fe0-3aea-1069-a2d8-08002b30309d}");
Process.Start("explorer.exe", "::{450d8fba-ad25-11d0-98a8-0800361b1103}");

?

Try explorer.exe:

Process.Start("explorer.exe", "::{20d04fe0-3aea-1069-a2d8-08002b30309d}");
Process.Start("explorer.exe", "::{450d8fba-ad25-11d0-98a8-0800361b1103}");

This does not work for my Vista:

string myComputerPath = Environment.GetFolderPath(Environment.SpecialFolder.MyComputer);
System.Diagnostics.Process.Start("explorer", myComputerPath);

as Environment.SpecialFolder.MyComputer returns "" and Process.Start("explorer", "") opens My Documents.

The GUID seems to do it, though:

Process.Start("explorer.exe", "::{20d04fe0-3aea-1069-a2d8-08002b30309d}");
anjaly grace
System.Diagnostics.Process.Start("...");

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.

Marco

System.Diagnostics.Process.Start("...");

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.

On Windows 7 this results in opening the folder from where your executable is running, i.e. the "current" folder.

I had to open MyDocuments and based on comments above I narrowed down the solution to open Explorer without side effects:

Process.Start("::{450d8fba-ad25-11d0-98a8-0800361b1103}");

I tested it on Windows Server 2008 R2.

samdoss

Samdoss

Just enter the

System.Diagnostics.Process.Start(directoryPath);

Its very easy. Try that.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!