用这个网页介绍的方法做热更新补丁 http://www.cocoachina.com/bbs/read.php?tid=213061
string command = "rd /s /q "; command += "\"" + string(path) + "\""; succ = system(command.c_str());
这个代码有一个副作用,就是会导致Windows调试情况下,控制台输出调试信息的print("...")出问题,
实际逻辑没问题,只是print("...")都乱了。这样不方便调试。
解决方法就是去网上搜一个用API实现的删除文件夹的代码,替换system( "rd /s /q xxx")的方式
原文链接:https://www.f2er.com/cocos2dx/338740.html