Check if folder path existing
| 40 | |
| 41 | // Check if folder path existing |
| 42 | bool ChunkReader::does_folder_exist(std::string path) |
| 43 | { |
| 44 | QDir dir(path.c_str()); |
| 45 | return dir.exists(); |
| 46 | } |
| 47 | |
| 48 | // Load JSON meta data about this chunk folder |
| 49 | void ChunkReader::load_json() |
nothing calls this directly
no outgoing calls
no test coverage detected