QT运行.bat文件
程序员文章站
2022-03-02 10:30:00
...
QProcess p(NULL);
p.setWorkingDirectory("你的bat文件所在的文件夹路径,如C:/test");
QString command = "你的bat文件所在路径,如C:/test/test.bat";
p.start(command);
p.waitForFinished();