| 472 | } |
| 473 | |
| 474 | FileSystemRef MountSystem::_getFileSystemFromList(const Path& path) const |
| 475 | { |
| 476 | for (Vector<MountFS>::const_iterator itr = mMountList.begin(); itr != mMountList.end(); itr++) |
| 477 | { |
| 478 | if (itr->root.equal( path.getRoot(), String::NoCase )) |
| 479 | return itr->fileSystem; |
| 480 | } |
| 481 | |
| 482 | return NULL; |
| 483 | } |
| 484 | |
| 485 | |
| 486 | Path MountSystem::_normalize(const Path& path) |