欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

QT 启动shell脚本

程序员文章站 2022-10-04 16:03:47
1、QProcess *p = new QProcess(this); 2、QString str = qApp->applicationDirPath() + "/update.sh";//这是我的shell脚本的目录 3、if(p->startDetached(str)) { qDebug() ......

1、QProcess *p = new QProcess(this);

2、QString str = qApp->applicationDirPath() + "/update.sh";//这是我的shell脚本的目录

3、if(p->startDetached(str))

{

  qDebug() << "success";

}else

{

  qDebug() << "fail";

}