Qt 桌面服务 QDesktopServices

 

使用浏览器打开网址

#include <QDesktopServices>
#include <QUrl>

QUrl url(QString("https://cn.bing.com"));
QDesktopServices::openUrl(url);

 

 

打开本地文件夹

#include <QDesktopServices>
#include <QUrl>

QString filePath = QString("D:");
QString path = QString("file:///") + filePath;
QDesktopServices::openUrl(QUrl(path, QUrl::TolerantMode));

 

Qt 桌面服务 QDesktopServices

上一篇:docker-compose部署redis一主两从


下一篇:idea构建简单前端token保存,获取,后端token获取