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

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

 

posted @ 2018-07-21 23:52  露夕逝  阅读(1719)  评论(0编辑  收藏  举报