On Python 2.7 os.makedirs()
is missing exist_ok
. This is available in Python 3 only.
I know that this is the a working work around:
try:
os.makedirs(settings.STATIC_ROOT)
except OSError as e:
if e.errno != errno.EEXIST:
raise
I could create a custom my_make_dirs()
method and use this, instead of os.makedirs()
, but this is not nice.
What is the most pythonic work around, if you forced to support Python 2.7?
AFAIK python-future or six won't help here.