MCPcopy Create free account
hub / github.com/OpenShot/libopenshot / create_folder

Method create_folder

src/ChunkWriter.cpp:267–273  ·  view source on GitHub ↗

check for chunk folder

Source from the content-addressed store, hash-verified

265
266// check for chunk folder
267void 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
276bool ChunkWriter::is_chunk_valid()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected