import os import errno if not os.path.exists(value): try: os.makedirs(value, 0o700) except OSError as e: if e.errno != errno.EEXIST: raise