unity Android在streamingAssets路径下文件无法读取的的解决方法
unity Android在streamingAssets路径下文件,有时候plugin下的.jar或者.so无法直接读取;
解决方法之一,拷贝至其他路径:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | #if UNITY_ANDROID string s = Application.streamingAssetsPath + "/s/ss.txt" ; string filePath = Application.persistentDataPath + "/s" ; if (!File.Exists(filePath+ "/ss.txt" )) { using (WWW www = new WWW(s)) { yield return www; if (! string .IsNullOrEmpty(www.error)) { Debug.Log(www.error); } else { if (!Directory.Exists(filePath)) { //创建文件夹 Directory.CreateDirectory(filePath); } File.WriteAllBytes(filePath+ "/ss.txt" , www.bytes); } } } #endif |
博客园Jason_c微信打赏码
如果本篇文档对你有帮助,打赏Jason_c根华子吧,他的私房钱被老婆没收了,呜呜!
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步