| 251 | } |
| 252 | |
| 253 | bool ensureFilePathExists(QString filenamepath) |
| 254 | { |
| 255 | QFileInfo a(filenamepath); |
| 256 | QDir dir; |
| 257 | QString ensuredPath = a.path(); |
| 258 | bool success = dir.mkpath(ensuredPath); |
| 259 | return success; |
| 260 | } |
| 261 | |
| 262 | bool ensureFolderPathExists(const QFileInfo folderPath) |
| 263 | { |
no test coverage detected