| 126 | } |
| 127 | |
| 128 | void VirtualFileSystem::cleanUP(main::ClientContext* context) { |
| 129 | for (auto& subSystem : subSystems) { |
| 130 | subSystem->cleanUP(context); |
| 131 | } |
| 132 | defaultFS->cleanUP(context); |
| 133 | } |
| 134 | |
| 135 | bool VirtualFileSystem::handleFileViaFunction(const std::string& path) const { |
| 136 | return findFileSystem(path)->handleFileViaFunction(path); |