-1
我想在編譯make文件之前刪除所有.exe文件。我用下面幾行來做,但它不起作用。 QProcess有什麼問題?還有其他解決方案嗎?請幫忙。使用QProcess刪除文件
QProcess del;
del.start("rm", QStringList() << outputPath + "/" + "*.exe"); //Removing all .exe files in outputPath.
del.waitForFinished(-1);
請幫忙。
我在Linux平臺上運行。我試過QFile :: remove,但它對我無效 – Denzil
這意味着你的文件路徑或權限是錯誤的。 –