I am new to cocos2d-x and when compiling my project I get this error.
Call inaccessible function 'system': not available in iOS
I see that this call is no longer applicable, but what can I use to replace it? Any insight would be appreciated!
bool FileUtils::removeDirectory(const std::string& path)
{
#if !defined(CC_TARGET_OS_TVOS)
std::string command = "rm -r ";
command += "\"" + path + "\"";
if (system(command.c_str()) >= 0)
return true;
else
return false;
#else
return false;
#endif
}
source
share