| 852 | } |
| 853 | |
| 854 | FileNodeRef MountSystem::getFileNode(const Path& path) |
| 855 | { |
| 856 | Path np = _normalize(path); |
| 857 | FileSystemRef fs = _getFileSystemFromList(np); |
| 858 | if (fs != NULL) |
| 859 | return fs->resolve(np); |
| 860 | return NULL; |
| 861 | } |
| 862 | |
| 863 | bool MountSystem::mapFSPath( const String &inRoot, const Path &inPath, Path &outPath ) |
| 864 | { |