Whether this path is a character device.
(self)
| 920 | return False |
| 921 | |
| 922 | def is_char_device(self): |
| 923 | """ |
| 924 | Whether this path is a character device. |
| 925 | """ |
| 926 | try: |
| 927 | return S_ISCHR(self.stat().st_mode) |
| 928 | except (OSError, ValueError): |
| 929 | return False |
| 930 | |
| 931 | def is_fifo(self): |
| 932 | """ |