| 403 | } |
| 404 | |
| 405 | FileNodeRef FileSystemRedirect::create(const Path& path,FileNode::Mode mode) |
| 406 | { |
| 407 | Path p = _merge(path); |
| 408 | FileSystemRef fs = mMFS->getFileSystem(p); |
| 409 | if (fs != NULL) |
| 410 | return fs->create(p,mode); |
| 411 | return NULL; |
| 412 | } |
| 413 | |
| 414 | bool FileSystemRedirect::remove(const Path& path) |
| 415 | { |
no test coverage detected