File size: 185 Bytes
530f5ca
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from os import path, makedirs
from shutil import rmtree


def make_upload_dir(path_: str):
    if path.exists(path_):
        rmtree(path=path_, ignore_errors=True)
    makedirs(path_)