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

  • Post author:
  • Post category:其他


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

转载于:https://www.cnblogs.com/luxishi/p/9348598.html