--------------------------------- Directory::GetMountedChild Returns nullptr, or the child Entry if it is found
| 440 | // Returns nullptr, or the child Entry if it is found |
| 441 | // |
| 442 | Entry* Directory::GetMountedChild(std::string const& path) const |
| 443 | { |
| 444 | std::string modPath = path; |
| 445 | |
| 446 | FileUtil::RemoveExcessPathDelimiters(modPath); |
| 447 | FileUtil::RemoveRelativePath(modPath); |
| 448 | |
| 449 | return GetMountedChildRecursive(modPath); |
| 450 | } |
| 451 | |
| 452 | //--------------------------------- |
| 453 | // Directory::RecursiveMount |
no outgoing calls
no test coverage detected