QT 启动与关闭外部程序

QT 启动与关闭外部程序,第1张

启动

QString filepath = QDir::currentPath();

    QString fullpath = filepath+"\\pp\\dist\\start";

    QString title = fullpath+"\\mainexe";

    title = titlereplace("/","\\");

    fullpath = fullpathreplace("/","\\");

    QProcess p(this);

    psetWorkingDirectory(fullpath);

    pstart("cmd", QStringList()<<"/c"<<"start mainexe");

    pwaitForStarted();

    pwaitForFinished();

关闭

    QProcess p(this);

    psetWorkingDirectory(fullpath);

    pstart("cmd", QStringList()<<"/c"<<"taskkill /f /t /im mainexe");

    pwaitForStarted();

    pwaitForFinished();

IE清除缓存-Ctrl+Shift+Delete。

2 FireFox清除缓存-Ctrl+Shift+Delete。

3 谷歌浏览器清除缓存-Ctrl+Shift+Delete

以上就是关于QT 启动与关闭外部程序全部的内容,包括:QT 启动与关闭外部程序、qtwebengine清理缓存快捷键、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/9789077.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-02
下一篇 2023-05-02

发表评论

登录后才能评论

评论列表(0条)

保存