(self)
| 382 | self._delete_dir_contents(path, missing_dir_ok) |
| 383 | |
| 384 | def delete_root_dir_contents(self): |
| 385 | self._delete_dir_contents("/", False) |
| 386 | |
| 387 | def delete_file(self, path): |
| 388 | # fs.rm correctly raises IsADirectoryError when `path` is a directory |