8 lines
193 B
Python
8 lines
193 B
Python
|
|
def mkdirp(path):
|
||
|
|
try:
|
||
|
|
os.makedirs(path)
|
||
|
|
except OSError as exc: # Python >2.5
|
||
|
|
if exc.errno == errno.EEXIST and os.path.isdir(path):
|
||
|
|
pass
|
||
|
|
else: raise
|