Ejemplo n.º 1
0
 /**
  * @return bool TRUE if the file has been successfully moved, FALSE otherwise
  */
 public function moveTo(IFile $file)
 {
     $this->checkConnectPermission();
     if ($file instanceof EyeosAbstractVirtualFile) {
         $file->checkWritePermission();
     }
     return parent::moveTo($file);
 }