| 412 | } |
| 413 | |
| 414 | bool FileSystemRedirect::remove(const Path& path) |
| 415 | { |
| 416 | Path p = _merge(path); |
| 417 | FileSystemRef fs = mMFS->getFileSystem(p); |
| 418 | if (fs != NULL) |
| 419 | return fs->remove(p); |
| 420 | return false; |
| 421 | } |
| 422 | |
| 423 | bool FileSystemRedirect::rename(const Path& a,const Path& b) |
| 424 | { |
no test coverage detected