| 482 | } |
| 483 | |
| 484 | bool FileSystemRedirect::remove(const Path& path) |
| 485 | { |
| 486 | Path p = _merge(path); |
| 487 | FileSystemRef fs = mMFS->getFileSystem(p); |
| 488 | if (fs != NULL) |
| 489 | return fs->remove(p); |
| 490 | return false; |
| 491 | } |
| 492 | |
| 493 | bool FileSystemRedirect::rename(const Path& a,const Path& b) |
| 494 | { |
no test coverage detected