Delete this file or directory (including all sub-directories).
(self)
| 1249 | os.rmdir(self) |
| 1250 | |
| 1251 | def _delete(self): |
| 1252 | """ |
| 1253 | Delete this file or directory (including all sub-directories). |
| 1254 | """ |
| 1255 | if self.is_symlink() or self.is_junction(): |
| 1256 | self.unlink() |
| 1257 | elif self.is_dir(): |
| 1258 | # Lazy import to improve module import time |
| 1259 | import shutil |
| 1260 | shutil.rmtree(self) |
| 1261 | else: |
| 1262 | self.unlink() |
| 1263 | |
| 1264 | def rename(self, target): |
| 1265 | """ |