Whether this path is a block device.
(self)
| 713 | return os.path.isjunction(self) |
| 714 | |
| 715 | def is_block_device(self): |
| 716 | """ |
| 717 | Whether this path is a block device. |
| 718 | """ |
| 719 | try: |
| 720 | return S_ISBLK(self.stat().st_mode) |
| 721 | except (OSError, ValueError): |
| 722 | return False |
| 723 | |
| 724 | def is_char_device(self): |
| 725 | """ |