예제 #1
0
 /**
  * @return int The size of the file (in KB)
  */
 public function getSize($recursive = false)
 {
     if ($this->realFile === null) {
         throw new EyeUnsupportedOperationException(__METHOD__ . ' on ' . $this->path);
     }
     return $this->realFile->getSize($recursive);
 }