Source code for utils

import os

[docs]def directory(name): if not os.path.exists(name): os.makedirs(name)