.net5 winform 打开文件夹
直接使用System.Diagnostics.Process.Start("路径"),有可能会包拒绝访问的异常,建议采用以下写法:
var newPath=“”;
var psi = new System.Diagnostics.ProcessStartInfo() { FileName = newPath, UseShellExecute = true };
System.Diagnostics.Process.Start(psi);