Files
einstein/einsteingame/utils.py
Gergely Polonkai 3b0d244255 Continue porting
2015-11-03 17:38:03 +01:00

6 lines
97 B
Python

import os
def ensureDirExists(path):
if not os.path.exists(path):
os.makedirs(path)