C#.Net 打开指定的文件或者文件夹
// 1、打开文件
System.Diagnostics.Process.Start(path);
// 2、打开文件夹
System.Diagnostics.Process.Start("explorer.exe", path);
// 1、打开文件
System.Diagnostics.Process.Start(path);
// 2、打开文件夹
System.Diagnostics.Process.Start("explorer.exe", path);