C# winform開啟資料夾並選中指定檔案

yuejin發表於2014-02-27

例如:開啟“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");

 

相關文章