コード例 #1
0
 /**
  * Gets the size of the provided file
  * @param zibo\library\filesystem\File $path File to get the size of
  * @return integer The size of the file
  */
 public function getSize(File $path)
 {
     $path = new File($this->root, $path);
     return $path->getSize();
 }