Example #1
0
 /**
  * Get file located into $this->directory (existing or not)
  *
  * @param $path
  * @return File
  */
 public function getFile($path)
 {
     $file = new File($this->getFileSystemId(), $this->getFullPath($path));
     $file->setServiceLocator($this->getServiceLocator());
     return $file;
 }