1 2 3 4 5 6 7 8
import os import shutil def try_delete(filename): try: os.unlink(filename) except: shutil.rmtree(filename, ignore_errors=True)