| 455 | } |
| 456 | |
| 457 | Path FileSystemRedirect::_merge(const Path& path) |
| 458 | { |
| 459 | Path p = mPath; |
| 460 | p.setPath(Path::Join(p.getPath(),'/',Path::CompressPath(path.getPath()))); |
| 461 | p.setFileName(path.getFileName()); |
| 462 | p.setExtension(path.getExtension()); |
| 463 | return p; |
| 464 | } |
| 465 | |
| 466 | FileNodeRef FileSystemRedirect::resolve(const Path& path) |
| 467 | { |
no test coverage detected