Return True if it is a directory.
(self)
| 1683 | return self.isreg() |
| 1684 | |
| 1685 | def isdir(self): |
| 1686 | 'Return True if it is a directory.' |
| 1687 | return self.type == DIRTYPE |
| 1688 | |
| 1689 | def issym(self): |
| 1690 | 'Return True if it is a symbolic link.' |
no outgoing calls