3
我需要在C#項目中的32位和64位Windows上確定原始explorer.exe的路徑。什麼是最可靠的方法來實現呢?如何確定.NET中exlorer.exe的路徑?
我需要在C#項目中的32位和64位Windows上確定原始explorer.exe的路徑。什麼是最可靠的方法來實現呢?如何確定.NET中exlorer.exe的路徑?
我會使用環境變量「WINDIR」爲Explorer.exe的坐落在那裏
string windir = Environment.GetEnvironmentVariable("windir");
string explorerPath = windir + @"\explorer.exe";
作品奇妙,謝謝! – Hedge 2010-09-17 10:47:31
@對衝:不客氣:-) – Xander 2010-09-17 14:51:42