def ensure_not_exists(path): if not exists(path): return if isfile(path): os.unlink(path) else: rmtree(path)