| 264 | } |
| 265 | |
| 266 | bool ensureFilePathExists(QString filenamepath) |
| 267 | { |
| 268 | QFileInfo a(filenamepath); |
| 269 | QDir dir; |
| 270 | QString ensuredPath = a.path(); |
| 271 | bool success = dir.mkpath(ensuredPath); |
| 272 | return success; |
| 273 | } |
| 274 | |
| 275 | bool ensureFolderPathExists(const QFileInfo folderPath) |
| 276 | { |
no test coverage detected