| 682 | } |
| 683 | |
| 684 | bool MountSystem::getFileAttributes(const Path& path,FileNode::Attributes* attr) |
| 685 | { |
| 686 | FileNodeRef file = getFileNode(path); |
| 687 | |
| 688 | if (file != NULL) |
| 689 | { |
| 690 | bool result = file->getAttributes(attr); |
| 691 | return result; |
| 692 | } |
| 693 | |
| 694 | return false; |
| 695 | } |
| 696 | |
| 697 | FileNodeRef MountSystem::getFileNode(const Path& path) |
| 698 | { |
no test coverage detected