string
path1 =
@"d:\log.txt"
;
//打開D盤下的log.txt文件
System.Diagnostics.Process.Start(path1);
string
path2 =
@"d:\test"
;
//調用資源管理器,打開D盤下的test文件夾
System.Diagnostics.Process.Start(
"explorer"
,path2);