Whether this path is a junction.
(self)
| 707 | return os.path.islink(self) |
| 708 | |
| 709 | def is_junction(self): |
| 710 | """ |
| 711 | Whether this path is a junction. |
| 712 | """ |
| 713 | return os.path.isjunction(self) |
| 714 | |
| 715 | def is_block_device(self): |
| 716 | """ |
no outgoing calls