| 97 | } |
| 98 | |
| 99 | bool ensureFolderPathExists(QString foldernamepath) |
| 100 | { |
| 101 | QFileInfo a(foldernamepath); |
| 102 | QDir dir; |
| 103 | QString ensuredPath = a.filePath(); |
| 104 | bool success = dir.mkpath(ensuredPath); |
| 105 | return success; |
| 106 | } |
| 107 | |
| 108 | bool copy::operator()(const QString &offset) |
| 109 | { |
no test coverage detected