Whether this path is a junction.
(self)
| 905 | return os.path.islink(self) |
| 906 | |
| 907 | def is_junction(self): |
| 908 | """ |
| 909 | Whether this path is a junction. |
| 910 | """ |
| 911 | return os.path.isjunction(self) |
| 912 | |
| 913 | def is_block_device(self): |
| 914 | """ |
no outgoing calls