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