function(string $file)
{
if ($this->check() && $this->exists($file)) {
if ($this->mode === 'nextcloud') {
return $this->obj->getContents($file);
} else {
$real = $this->getRealPath($file);
return file_get_contents($real);
}
}
return null;
}