MCPcopy Create free account
hub / github.com/aiekick/ImGuiFileDialog / CreateDir

Method CreateDir

ImGuiFileDialog.cpp:2371–2377  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2369}
2370
2371bool IGFD::FileManager::CreateDir(const std::string& vPath) {
2372 if (!vPath.empty()) {
2373 std::string path = m_CurrentPath + IGFD::Utils::GetPathSeparator() + vPath;
2374 return m_FileSystemPtr->CreateDirectoryIfNotExist(path);
2375 }
2376 return false;
2377}
2378
2379std::string IGFD::FileManager::ComposeNewPath(std::vector<std::string>::iterator vIter) {
2380 std::string res;

Callers

nothing calls this directly

Calls 2

emptyMethod · 0.80

Tested by

no test coverage detected