Whether this path is a block device.
(self)
| 911 | return os.path.isjunction(self) |
| 912 | |
| 913 | def is_block_device(self): |
| 914 | """ |
| 915 | Whether this path is a block device. |
| 916 | """ |
| 917 | try: |
| 918 | return S_ISBLK(self.stat().st_mode) |
| 919 | except (OSError, ValueError): |
| 920 | return False |
| 921 | |
| 922 | def is_char_device(self): |
| 923 | """ |