码迷,mamicode.com
首页 > 移动开发 > 详细

cocos2dx的android版FileUtils的坑

时间:2016-12-12 01:25:47      阅读:381      评论:0      收藏:0      [点我收藏+]

标签:无法   路径   else   log   规则   ref   static   highlight   util   

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的坑

标签:无法   路径   else   log   规则   ref   static   highlight   util   

原文地址:http://www.cnblogs.com/eaglelun/p/6160919.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!