コード例 #1
0
ファイル: fsquota.php プロジェクト: noccy80/lepton-ng
 public function add($path)
 {
     if (FsObject::exists($path)) {
         $this->_contents[] = $path;
     }
     if ($this->_size == null) {
         $this->_size = 0;
     }
     $this->_size += FsObject::getSize($path);
 }