(self, block)
| 247 | |
| 248 | # Check If File |
| 249 | def is_file(self, block): |
| 250 | assert type(block) is int and 1 <= block <= self.__blocks |
| 251 | return self.status(block) == self.STATUS.file |
| 252 | |
| 253 | # Check If Directory |
| 254 | def is_directory(self, block): |
no test coverage detected