| 695 | } |
| 696 | |
| 697 | FileNodeRef MountSystem::getFileNode(const Path& path) |
| 698 | { |
| 699 | Path np = _normalize(path); |
| 700 | FileSystemRef fs = _getFileSystemFromList(np); |
| 701 | if (fs != NULL) |
| 702 | return fs->resolve(np); |
| 703 | return NULL; |
| 704 | } |
| 705 | |
| 706 | bool MountSystem::mapFSPath( const String &inRoot, const Path &inPath, Path &outPath ) |
| 707 | { |