Return True if it is a hard link.
(self)
| 1672 | return self.type == SYMTYPE |
| 1673 | |
| 1674 | def islnk(self): |
| 1675 | 'Return True if it is a hard link.' |
| 1676 | return self.type == LNKTYPE |
| 1677 | |
| 1678 | def ischr(self): |
| 1679 | 'Return True if it is a character device.' |
no outgoing calls