Return True if it is a hard link.
(self)
| 1691 | return self.type == SYMTYPE |
| 1692 | |
| 1693 | def islnk(self): |
| 1694 | 'Return True if it is a hard link.' |
| 1695 | return self.type == LNKTYPE |
| 1696 | |
| 1697 | def ischr(self): |
| 1698 | 'Return True if it is a character device.' |
no outgoing calls