Esempio n. 1
0
 /** {@inheritdoc} */
 public function file_exists($path)
 {
     if ($path === '') {
         return true;
     }
     $this->checkAvailability();
     try {
         return parent::file_exists($path);
     } catch (\OCP\Files\StorageNotAvailableException $e) {
         $this->setAvailability(false);
         throw $e;
     }
 }