| 156 | } |
| 157 | |
| 158 | bool ensureFolderPathExists(const QFileInfo folderPath) |
| 159 | { |
| 160 | QDir dir; |
| 161 | QString ensuredPath = folderPath.filePath(); |
| 162 | bool success = dir.mkpath(ensuredPath); |
| 163 | return success; |
| 164 | } |
| 165 | |
| 166 | bool ensureFolderPathExists(const QString folderPathName) |
| 167 | { |
no test coverage detected