| 839 | } |
| 840 | |
| 841 | bool MountSystem::getFileAttributes(const Path& path,FileNode::Attributes* attr) |
| 842 | { |
| 843 | FileNodeRef file = getFileNode(path); |
| 844 | |
| 845 | if (file != NULL) |
| 846 | { |
| 847 | bool result = file->getAttributes(attr); |
| 848 | return result; |
| 849 | } |
| 850 | |
| 851 | return false; |
| 852 | } |
| 853 | |
| 854 | FileNodeRef MountSystem::getFileNode(const Path& path) |
| 855 | { |
no test coverage detected