QT 启动与关闭外部程序

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

启动

QString filepath = QDir::currentPath()

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

    QString title = fullpath+"\\main.exe"

    title = title.replace("/","\\")

    fullpath = fullpath.replace("/","\\")

    QProcess p(this)

    p.setWorkingDirectory(fullpath)

    p.start("cmd", QStringList()<<"/c"<<"start main.exe")

    p.waitForStarted()

    p.waitForFinished()

关闭

    QProcess p(this)

    p.setWorkingDirectory(fullpath)

    p.start("cmd", QStringList()<<"/c"<<"taskkill /f /t /im main.exe")

    p.waitForStarted()

    p.waitForFinished()

小O已为您整理如下手机允许安装未知来源软件方法:1、ColorOS 11版本机型,设置路径:「设置 >安全 >安装外部来源应用」。

2、ColorOS 5.0-7.2版本机型,进入「设置 >其他设置 >设备与隐私 >安装外部来源应用(未知来源安装应用)」,打开对应应用开关,即可安装从该应用内下载的软件。

本回答适用于OPPO所有机型。


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

原文地址: http://outofmemory.cn/yw/11864676.html

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

发表评论

登录后才能评论

评论列表(0条)

保存