示例 : 打开资产目录
// 需要加前缀
Application.OpenURL("file:///" + folderPath);
// * 推荐使用Uri类,会将路径进行转换
var folderPath = Application.dataPath;
var uri = new Uri(folderPath);
Application.OpenURL(uri.AbsoluteUri); // file:///E:/Gitee/xxx/Assets
注意点
- 不支持中文路径
2024-03-28 22:17:58
示例 : 打开资产目录
// 需要加前缀
Application.OpenURL("file:///" + folderPath);
// * 推荐使用Uri类,会将路径进行转换
var folderPath = Application.dataPath;
var uri = new Uri(folderPath);
Application.OpenURL(uri.AbsoluteUri); // file:///E:/Gitee/xxx/Assets
注意点