| 88 | } |
| 89 | |
| 90 | bool ensureFilePathExists(QString filenamepath) |
| 91 | { |
| 92 | QFileInfo a(filenamepath); |
| 93 | QDir dir; |
| 94 | QString ensuredPath = a.path(); |
| 95 | bool success = dir.mkpath(ensuredPath); |
| 96 | return success; |
| 97 | } |
| 98 | |
| 99 | bool ensureFolderPathExists(QString foldernamepath) |
| 100 | { |
no test coverage detected