(self, path, recursive)
| 353 | return infos |
| 354 | |
| 355 | def create_dir(self, path, recursive): |
| 356 | # mkdir also raises FileNotFoundError when base directory is not found |
| 357 | try: |
| 358 | self.fs.mkdir(path, create_parents=recursive) |
| 359 | except FileExistsError: |
| 360 | pass |
| 361 | |
| 362 | def delete_dir(self, path): |
| 363 | self.fs.rm(path, recursive=True) |
no outgoing calls