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

Method does_folder_exist

src/ChunkReader.cpp:42–46  ·  view source on GitHub ↗

Check if folder path existing

Source from the content-addressed store, hash-verified

40
41// Check if folder path existing
42bool 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
49void ChunkReader::load_json()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected