Delete this file or directory (including all sub-directories).
(self)
| 1051 | os.rmdir(self) |
| 1052 | |
| 1053 | def _delete(self): |
| 1054 | """ |
| 1055 | Delete this file or directory (including all sub-directories). |
| 1056 | """ |
| 1057 | if self.is_symlink() or self.is_junction(): |
| 1058 | self.unlink() |
| 1059 | elif self.is_dir(): |
| 1060 | # Lazy import to improve module import time |
| 1061 | import shutil |
| 1062 | shutil.rmtree(self) |
| 1063 | else: |
| 1064 | self.unlink() |
| 1065 | |
| 1066 | def rename(self, target): |
| 1067 | """ |