예제 #1
0
파일: smb.php 프로젝트: evanjt/core
 /**
  * @param \Icewind\SMB\IFileInfo $info
  * @return array
  */
 protected function formatInfo($info)
 {
     return array('size' => $info->getSize(), 'mtime' => $info->getMTime());
 }
예제 #2
0
 /**
  * Get the normalized path from an IFileInfo object.
  *
  * @param IFileInfo $file
  * @return string
  */
 protected function getFilePath(IFileInfo $file)
 {
     return $this->removePathPrefix(ltrim($file->getPath(), $this->pathSeparator));
 }