Lines Matching defs:target
1061 $target = $target_base_dir . $item['base'];
1062 if (!$overwrite && file_exists($target)) {
1069 $action = file_exists($target) ? 'update' : 'install';
1072 if ($this->dircopy($item['tmp'], $target)) {
1185 * Decompress a given file to the given target directory
1190 * @param string $target directory to extract to
1194 private function decompress($file, $target)
1196 // decompression library doesn't like target folders ending in "/"
1197 if (str_ends_with($target, '/')) $target = substr($target, 0, -1);
1204 $tar->extract($target);
1214 $zip->extract($target);