I want to start an external program out of my QT-Programm. The only working solution was:
system(\"start explorer.exe\");
But it is only wo
QDir::homePath doesn't end with separator. Valid path to your exe
QString file = QDir::homePath + QDir::separator + "file.exe";