Example #1
0
 def is_dir(self, path: PATH_TYPES) -> bool:
     """Check whether the provided path is a directory."""
     if not isinstance(path, pathlib.Path):
         path = pathlib.Path(path)
     return path.is_dir()
Example #2
0
 def is_dir(self, path: PATH_TYPES) -> bool:
     if not isinstance(path, self.PATH_BACKEND):
         path = self.PATH_BACKEND(path)
     return bool(path.is_dir())