check for chunk folder
| 265 | |
| 266 | // check for chunk folder |
| 267 | void ChunkWriter::create_folder(std::string path) |
| 268 | { |
| 269 | QDir dir(path.c_str()); |
| 270 | if (!dir.exists()) { |
| 271 | dir.mkpath("."); |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | // check for valid chunk json |
| 276 | bool ChunkWriter::is_chunk_valid() |
nothing calls this directly
no outgoing calls
no test coverage detected