| 2408 | } |
| 2409 | |
| 2410 | bool IGFD::FileManager::SetPathOnParentDirectoryIfAny() { |
| 2411 | if (m_CurrentPathDecomposition.size() > 1) { |
| 2412 | m_CurrentPath = ComposeNewPath(m_CurrentPathDecomposition.end() - 2); |
| 2413 | return true; |
| 2414 | } |
| 2415 | return false; |
| 2416 | } |
| 2417 | |
| 2418 | std::string IGFD::FileManager::GetCurrentPath() { |
| 2419 | if (m_CurrentPath.empty()) { |