mutapath.MutaPath.makedirs

MutaPath.makedirs(name [, mode=0o777][, exist_ok=False])[source]

Super-mkdir; create a leaf directory and all intermediate ones. Works like mkdir, except that any intermediate path segment (not just the rightmost) will be created if it does not exist. If the target directory already exists, raise an OSError if exist_ok is False. Otherwise no exception is raised. This is recursive.