1. 程式人生 > >Qt在win下自動開啟資料夾

Qt在win下自動開啟資料夾

#include<QProcess>
#include
<QDir>
#include
<QString>
QStringpath=QDir::currentPath();//獲取程式當前目錄

path.replace("/","\\");//獲取到地址中的"/"替換為"\"
QProcess::startDetached("explorer"+path);//開啟檔案