cocos2d-x之文件读写

时间:2024-01-20 12:47:51

bool HelloWorld::init()

{

if ( !Layer::init() )

{

return false;

}

auto fu=FileUtils::getInstance();

//FILE *f=fopen(fu->fullPathFromRelativeFile("data.txt",fu->getWritablePath()).c_str(),"w");

//fprintf(f,"Hello World");

//fclose(f);

//log("%s",fu->getWritablePath().c_str());

Data d=fu->getDataFromFile(fu->fullPathFromRelativeFile("data.txt",fu->getWritablePath()));

log("%s",d.getBytes());

return true;

}