File size: 123 Bytes
ae7097b
 
 
 
 
 
1
2
3
4
5
6
7
import pathlib

def make_dirs(dirs: [str]):
    for p in dirs:
        pathlib.Path(p).mkdir(parents=True, exist_ok=True)