Copy path to QString

315 Views Asked by At

I need to copy the full filepath, without filename, into a QString from QFileDialog below.

  QString fileName = QFileDialog::getOpenFileName(this,
      tr("Select app to install"), '/' , tr("APK Files (*.apk)"));
1

There are 1 best solutions below

0
On BEST ANSWER

You use QString QFileInfo::absolutePath() const for this. See the documentation for details.

QFileInfo fileInfo(QFileDialog::getOpenFileName(this,
  tr("Select app to install"), '/' , tr("APK Files (*.apk)")));
qDebug() << fileInfo.absolutePath();