如何在.NET中确定explorer.exe的路径?

时间:2010-09-17 10:27:31

标签: c# .net visual-studio

我需要确定C#项目中32位和64位Windows上原始explorer.exe的路径。实现这一目标的最可靠方法是什么?

1 个答案:

答案 0 :(得分:4)

我会使用环境变量“windir”,因为explorer.exe位于那里

string windir = Environment.GetEnvironmentVariable("windir");
string explorerPath = windir + @"\explorer.exe";