org\upload\driver\Upyun::checkRootPath PHP Метод

checkRootPath() публичный Метод

检测上传根目录(又拍云上传时支持自动创建目录,直接返回)
public checkRootPath ( string $rootpath ) : boolean
$rootpath string 根目录
Результат boolean true-检测通过,false-检测失败
    public function checkRootPath($rootpath)
    {
        /* 设置根目录 */
        $this->rootPath = trim($rootpath, './') . '/';
        return true;
    }