aboutsummaryrefslogtreecommitdiff
path: root/tools/tempfiles.py
blob: 1953691e712112fbb329ec84f3d18963118b8b25 (plain)
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)