| 785 | } |
| 786 | |
| 787 | bool MountSystem::isFile(const Path& path) |
| 788 | { |
| 789 | FileNode::Attributes attr; |
| 790 | if (getFileAttributes(path,&attr)) |
| 791 | return attr.flags & FileNode::File; |
| 792 | return false; |
| 793 | } |
| 794 | |
| 795 | bool MountSystem::isDirectory(const Path& path, FileSystemRef fsRef) |
| 796 | { |