qt中调用bat文件
程序员文章站
2022-03-30 20:21:47
...
参考博客:https://blog.csdn.net/wayxl184/article/details/82875835
以下内容是摘抄以上博主博客:
在你的Qpushbutton中加入如下的代码:(注意加上头文件!!!)
QProcess p(NULL);
p.setWorkingDirectory("你的bat文件所在的文件夹路径,如C:/test");
QString command = "你的bat文件所在路径,如C:/test/test.bat";
p.start(command);
p.waitForFinished();
上一篇: Qt运行 .bat脚本文件
下一篇: Java 运行 bat 文件