1. 程式人生 > >Qt開啟指定目錄並選中指定檔案

Qt開啟指定目錄並選中指定檔案

目錄


  有時自動生成檔案之後,點選某個按鈕我們希望能夠自動跳轉到檔案所在目錄(開啟之後不依附於執行程式),可能還需要選中該檔案。
環境:win10 + Qt5.9.6 MinGW

方法一、使用Qt自帶的方法

  使用QDesktopServices::openUrl(const QUrl &url)靜態函式,可以跳到指定的目錄,但是目前還沒找到選中檔案的方法。

void MainWindow::on_createFileBtn_clicked()
{
QFile file; file.setFileName(QApplication::applicationDirPath() + "/" + QDateTime::currentDateTime().toString("yyyyMMdd_hhmmss") + ".txt"); if (!file.open(QIODevice::WriteOnly)) { qDebug() << "Create file failed!"; return; }
ui->filePathLE->setText(file.fileName()); } void MainWindow::on_openFolderBtn_clicked() { if (ui->filePathLE->text().isEmpty()) return; QString str = ui->filePathLE->text(); str.remove(str.split("/").last()); QDesktopServices::openUrl(QUrl(str )); }

效果圖:
在這裡插入圖片描述

方法二、使用windows自帶工具

  QProcess配合explorer可以自動跳轉到指定目錄並且選中該檔案。** 需要注意的是,只能識別 路徑只能識別 ''符號,因此需要替換一下**

void MainWindow::on_openFolderBtn_clicked()
{
    if (ui->filePathLE->text().isEmpty())
        return;

    QProcess process;
    QString filePath = ui->filePathLE->text();
    filePath.replace("/", "\\"); // 只能識別 "\"
    QString cmd = QString("explorer.exe /select,\"%1\"").arg(filePath);
    qDebug() << cmd;
    process.startDetached(cmd);
}

效果圖:
在這裡插入圖片描述