3 lines
55 B
Python
3 lines
55 B
Python
|
|
def mkdirp(path):
|
||
|
|
os.makedirs(path, exist_ok=True)
|