魏晓东 发表于 2024-12-22 14:26:24

【编辑器扩展】打开持久化路径/缓存路径/DataPath/StreamingAssetsPath文件

https://i-blog.csdnimg.cn/direct/66f97fc60c0542e083554ff4c21550b0.png
 代码
      
      public static void OpenPersistentDataPath()
      {
            Application.OpenURL(Application.persistentDataPath);
      }
      
      public static void OpenDataPath()
      {
            Application.OpenURL(Application.dataPath);
      }
      
      public static void OpenStreamingAssetsPath()
      {
            Application.OpenURL(Application.streamingAssetsPath);
      }
      
      public static void OpenTemporaryCachePath()
      {
            Application.OpenURL(Application.temporaryCachePath);
      }  

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
页: [1]
查看完整版本: 【编辑器扩展】打开持久化路径/缓存路径/DataPath/StreamingAssetsPath文件