CCFileUtils::getWriteablePath() が DocumentDirecotry ではなく CacheDirectory を返すことに気付きました。これを行う適切な理由はありますか?それともただのバグ?CCFileUtils.mm のコードは次のとおりです。
std::string CCFileUtils::getWriteablePath()
{
// save to document folder
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory,NsUserDomainMask,YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
std::string strRet = [documentsDirectory UTF8String];
strRet.append("/");
return strRet;
}