if not __salt__['file.directory_exists'](dest):
        try:
            __salt__['file.mkdir'](dest)
        except Exception as exc:
            return {'Error': salt.utils.stringutils.to_unicode(pprint.pformat(exc))}