Return True if it is a symbolic link.
(self)
| 1668 | return self.type == DIRTYPE |
| 1669 | |
| 1670 | def issym(self): |
| 1671 | 'Return True if it is a symbolic link.' |
| 1672 | return self.type == SYMTYPE |
| 1673 | |
| 1674 | def islnk(self): |
| 1675 | 'Return True if it is a hard link.' |
no outgoing calls