例如:開啟“E:\Training”資料夾並選中“20131250.html”檔案
System.Diagnostics.Process.Start("Explorer.exe", @"/select,E:\Training\20131250.html");
一句程式碼搞定!!!
擴充套件:
1)只開啟資料夾:
System.Diagnostics.Process.Start("Explorer.exe", @"E:\Training");
2)開啟資料夾並選中資料夾
System.Diagnostics.Process.Start("Explorer.exe", @"/select,E:\Training\js");