| 54 | } |
| 55 | |
| 56 | bool Platform::File::IsFile(bool follow_symlinks) const { |
| 57 | return GetType(follow_symlinks) == FileType::File; |
| 58 | } |
| 59 | |
| 60 | bool Platform::File::IsDirectory(bool follow_symlinks) const { |
| 61 | return GetType(follow_symlinks) == FileType::Directory; |
no test coverage detected