function(string $file)
{
if ($this->check()) {
if ($this->mode === 'nextcloud') {
return $this->obj->getFile($file);
}
if ($this->isFile($file)) {
return new bbn\File($this->getRealPath($file));
}
}
return null;
}