예제 #1
0
 public function preCopy($path1, $path2)
 {
     if (!self::$rootView) {
         self::$rootView = new \OC\Files\View('');
     }
     return self::$rootView->filesize($path1) < $this->getFreeSpace($path2) or $this->getFreeSpace($path2) == -1;
 }
예제 #2
0
파일: quota.php 프로젝트: noci2012/owncloud
 public function preCopy($path1, $path2)
 {
     if (!self::$rootView) {
         self::$rootView = new OC_FilesystemView('');
     }
     return self::$rootView->filesize($path1) < $this->getFreeSpace() or $this->getFreeSpace() == 0;
 }