mihaildev\elfinder\volume\Local::getRealPath PHP Method

getRealPath() public method

public getRealPath ( )
    public function getRealPath()
    {
        $path = Yii::getAlias($this->basePath . '/' . trim($this->path, '/'));
        if (!is_dir($path)) {
            mkdir($path, 0777, true);
        }
        return $path;
    }