Lines Matching full:file
6 * Class MediaChangeLog; handles changelog of a media file
13 * @return string path to file
24 * @return string path to file
42 * Returns path to the global media-changelog file
44 * @return string path to file
53 * Copy the externally-modified media file to the attic at the synthesized revision date.
54 * If the file mtime is older than the last known revision (broken chronology),
55 * touch the file forward so future reads see a consistent state.
64 $file = $this->getFilename();
65 if (!file_exists($file)) return true;
67 // rescue: file mtime older than last revision — touch forward to the synthesized date
69 if (!@touch($file, $revInfo['date'])) return false;
70 clearstatcache(false, $file);
75 if (!@copy($file, $atticfile)) return false;