Return True if it is a symbolic link.
(self)
| 1687 | return self.type == DIRTYPE |
| 1688 | |
| 1689 | def issym(self): |
| 1690 | 'Return True if it is a symbolic link.' |
| 1691 | return self.type == SYMTYPE |
| 1692 | |
| 1693 | def islnk(self): |
| 1694 | 'Return True if it is a hard link.' |
no outgoing calls