标签: c++ qt qprocess
我想在编译make文件之前删除所有.exe文件。我使用以下行来做到这一点,但它不起作用。 QProcess有什么问题?还有其他解决方案吗?请帮忙。
QProcess del; del.start("rm", QStringList() << outputPath + "/" + "*.exe"); //Removing all .exe files in outputPath. del.waitForFinished(-1);
请帮忙。
答案 0 :(得分:1)