in src/main/cpp/bootstrap/platformlauncher.cpp [337:350]
void PlatformLauncher::deleteNewClustersFile() {
logMsg("deleteNewClustersFile()...");
if (userDir.empty()) {
logMsg("\tuserdir empty, quiting");
return;
}
string listPath = userDir;
listPath += "\\update\\download\\netbeans.dirs";
if (fileExists(listPath.c_str())) {
DeleteFileA(listPath.c_str());
logMsg("%s file deleted.", listPath.c_str());
}
}