| 542 | } |
| 543 | |
| 544 | FileSystemRef MountSystem::_getFileSystemFromList(const Path& path) const |
| 545 | { |
| 546 | for (Vector<MountFS>::const_iterator itr = mMountList.begin(); itr != mMountList.end(); itr++) |
| 547 | { |
| 548 | if (itr->root.equal( path.getRoot(), String::NoCase )) |
| 549 | return itr->fileSystem; |
| 550 | } |
| 551 | |
| 552 | return NULL; |
| 553 | } |
| 554 | |
| 555 | |
| 556 | Path MountSystem::_normalize(const Path& path) |