C#.Net 打开指定的文件或者文件夹

// 1、打开文件
System.Diagnostics.Process.Start(path);

// 2、打开文件夹
System.Diagnostics.Process.Start("explorer.exe", path);

  

猜你喜欢

转载自www.cnblogs.com/wifeyj/p/12188378.html