File size: 91 Bytes
476e0f0
 
 
 
 
 
1
2
3
4
5
6
7
import os


def make_dir(path):
    if not os.path.exists(path):
        os.makedirs(path)