当前位置: 代码迷 >> QT开发 >> Qt实施一个bat文件
  详细解决方案

Qt实施一个bat文件

热度:57   发布时间:2016-04-25 03:51:42.0
Qt执行一个bat文件?
如题,有没有人做过?

------解决方案--------------------

QProcess p;
p.start("cmd.exe", QStringList() << "/c" << "c:\\uti\\mybat.bat");
if (p.waitForStarted()) 
{
   p.waitForFinished();
   qDebug() << p.readAllStandardOutput();
}
else
   qDebug() << "Failed to start";

  相关解决方案