Return True if it is a symbolic link.
(self)
| 1586 | return self.type == DIRTYPE |
| 1587 | |
| 1588 | def issym(self): |
| 1589 | 'Return True if it is a symbolic link.' |
| 1590 | return self.type == SYMTYPE |
| 1591 | |
| 1592 | def islnk(self): |
| 1593 | 'Return True if it is a hard link.' |
no outgoing calls
no test coverage detected