function($path)
{
if ($this->check()) {
$rpath = $this->getRealPath($path);
if ($this->mode !== 'nextcloud') {
if ($this->_is_dir($rpath)) {
return $this->_dirsize($rpath);
}
} else {
return $this->obj->getSize($rpath);
}
return null;
}
}