Lines Matching refs:file

18     /** @var string full path to where the file will be downloaded to */
20 /** @var string full path to where the file will be extracted to */
22 /** @var string URL to the VERSION file of the new DokuWiki release */
24 /** @var string URL to the composer.json file of the new DokuWiki release */
26 /** @var string URL to the plugin.info.txt file of the upgrade plugin */
176 $tar->setCallback(function ($file) {
177 /** @var FileInfo $file */
178 $this->log('info', $file->getPath());
241 $list = file($this->tgzdir . 'data/deleted.files');
245 $file = DOKU_INC . $line;
246 if (!file_exists($file)) continue;
248 // check that the given file is a case sensitive match
249 if (basename(realpath($file)) != basename($file)) {
255 (is_dir($file) && $this->recursiveDelete($file)) ||
256 @unlink($file)
309 while (($file = readdir($dh)) !== false) {
310 if ($file == '.' || $file == '..') continue;
311 $from = "$base/$dir/$file";
312 $to = DOKU_INC . "$dir/$file";
319 $this->log('error', '<b>' . $this->getLang('tv_noperm') . '</b>', hsc("$dir/$file"));
326 if (!$this->traverseCheckAndCopy("$dir/$file", $dryrun)) {
339 $this->log('error', '<b>' . $this->getLang('tv_noperm') . '</b>', hsc("$dir/$file"));
342 $this->log('info', $this->getLang('tv_upd'), hsc("$dir/$file"));
349 $this->log('error', '<b>' . $this->getLang('tv_nodel') . '</b>', hsc("$dir/$file"));
354 $this->log('error', '<b>' . $this->getLang('tv_nocopy') . '</b>', hsc("$dir/$file"));
357 $this->log('info', $this->getLang('tv_done'), hsc("$dir/$file"));