| 502 | } |
| 503 | |
| 504 | Path FileSystemRedirect::mapTo(const Path& path) |
| 505 | { |
| 506 | Path p = _merge(path); |
| 507 | FileSystemRef fs = mMFS->getFileSystem(p); |
| 508 | if (fs != NULL) |
| 509 | return fs->mapTo(p); |
| 510 | return NULL; |
| 511 | } |
| 512 | |
| 513 | Path FileSystemRedirect::mapFrom(const Path& path) |
| 514 | { |
no test coverage detected