| 938 | } |
| 939 | |
| 940 | bool MountSystem::isFile(const Path& path) |
| 941 | { |
| 942 | FileNode::Attributes attr; |
| 943 | if (getFileAttributes(path,&attr)) |
| 944 | return attr.flags & FileNode::File; |
| 945 | return false; |
| 946 | } |
| 947 | |
| 948 | bool MountSystem::isDirectory(const Path& path, FileSystemRef fsRef) |
| 949 | { |
no outgoing calls
no test coverage detected