| 2369 | } |
| 2370 | |
| 2371 | bool 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 | |
| 2379 | std::string IGFD::FileManager::ComposeNewPath(std::vector<std::string>::iterator vIter) { |
| 2380 | std::string res; |
nothing calls this directly
no test coverage detected