1234567891011121314151617181920212223 |
- from __future__ import annotations
- from upath._compat import FSSpecAccessorShim as _FSSpecAccessorShim
- from upath.core import UPath
- __all__ = ["HDFSPath"]
- # accessors are deprecated
- _HDFSAccessor = _FSSpecAccessorShim
- class HDFSPath(UPath):
- __slots__ = ()
- def mkdir(self, mode=0o777, parents=False, exist_ok=False):
- if not exist_ok and self.exists():
- raise FileExistsError(str(self))
- super().mkdir(mode=mode, parents=parents, exist_ok=exist_ok)
- def iterdir(self):
- if self.is_file():
- raise NotADirectoryError(str(self))
- yield from super().iterdir()
|