首页 > 技术文章 > unity 打开文件夹并鼠标选中某文件

luxishi 2018-07-21 23:52 原文

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

 

推荐阅读