首页 > 代码库 > cocos2dx的android版FileUtils的坑
cocos2dx的android版FileUtils的坑
cocos2dx3.13,FileUtils-android.cpp中可以看到:
FileUtils::Status FileUtilsAndroid::getContents(const std::string& filename, ResizableBuffer* buffer) { static const std::string apkprefix("assets/"); if (filename.empty()) return FileUtils::Status::NotExists; string fullPath = fullPathForFilename(filename); if (fullPath[0] == ‘/‘) return FileUtils::getContents(fullPath, buffer); string relativePath = string(); size_t position = fullPath.find(apkprefix); if (0 == position) { // "assets/" is at the beginning of the path and we don‘t want it relativePath += fullPath.substr(apkprefix.size()); } else { relativePath = fullPath; } ... }
如果路径以assets/开头,则assets会被去掉。这就意味着你的Resources下不能有assets文件夹,否则下面所有的文件都会由于这个规则而无法取到。
记录一下
cocos2dx的android版FileUtils的坑
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。