| 820 | } |
| 821 | |
| 822 | bool MountSystem::setCwd(const Path& file) |
| 823 | { |
| 824 | if (file.getPath().isEmpty()) |
| 825 | return false; |
| 826 | mCWD.setRoot(file.getRoot()); |
| 827 | mCWD.setPath(file.getPath()); |
| 828 | return true; |
| 829 | } |
| 830 | |
| 831 | const Path& MountSystem::getCwd() const |
| 832 | { |