| 41 | |
| 42 | namespace DesktopServices { |
| 43 | bool openPath(const QFileInfo& path, bool ensureFolderPathExists) |
| 44 | { |
| 45 | qDebug() << "Opening path" << path; |
| 46 | if (ensureFolderPathExists) { |
| 47 | FS::ensureFolderPathExists(path); |
| 48 | } |
| 49 | return openUrl(QUrl::fromLocalFile(path.absoluteFilePath())); |
| 50 | } |
| 51 | |
| 52 | bool openPath(const QString& path, bool ensureFolderPathExists) |
| 53 | { |
no test coverage detected