unity 打开文件夹并鼠标选中某文件

 System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "explorer.exe";
p.StartInfo.Arguments =(@" /select,"+path);
p.Start();

猜你喜欢

转载自www.cnblogs.com/luxishi/p/9348598.html