Example #1
0
 /**
  * Returns a path to a local version of this file to process it locally (e.g. with some system tool).
  * If the file is normally located on a remote storages, this creates a local copy.
  * If the file is already on the local system, this only makes a new copy if $writable is set to TRUE.
  *
  * @param bool $writable Set this to FALSE if you only want to do read operations on the file.
  * @return string
  */
 public function getForLocalProcessing($writable = true)
 {
     return $this->originalFile->getForLocalProcessing($writable);
 }