| 147 | } |
| 148 | |
| 149 | bool ensureFilePathExists(QString filenamepath) |
| 150 | { |
| 151 | QFileInfo a(filenamepath); |
| 152 | QDir dir; |
| 153 | QString ensuredPath = a.path(); |
| 154 | bool success = dir.mkpath(ensuredPath); |
| 155 | return success; |
| 156 | } |
| 157 | |
| 158 | bool ensureFolderPathExists(const QFileInfo folderPath) |
| 159 | { |
no test coverage detected