Unity打开指定路径文件夹或者文件夹内的.exe/.unity等
1.打开指定路径的文件夹
```csharp void Start() { string Path = "C:";//直接打开C盘 //string = Path = "C:/OK" //打开C盘内部名叫 OK 的文件夹
Path = Path.Replace("/","\\");
System.Diagnostics.Process.Start("explorer.exe", Path);
}
 直接将脚本挂在任意物体上
/------------------------------------------------------------------------------------------------/
## 打开指定路径的.exe/.unity等
```csharp
void Start()
{
string path = "E:\\Lemon\\Games\\\Game_duiduipeng\\Assets\\Scene\\Game.unity";
Application.OpenURL(path);
}
这里打开的是某个项目的场景(为了略过选择界面,直接加载项目)