Lines Matching full:archive
54 * Read the contents of a TAR archive
56 … * This function lists the files stored in the archive, and returns an indexed array of associative
71 …* The archive is closed afer reading the contents, because rewinding is not possible in bzip2 stre…
75 …his->closed || !$this->file) throw new VerboseTarIOException('Can not read from a closed archive');
91 * Extract an existing TAR archive
99 …* By default this will extract all files found in the archive. You can restrict the output using t…
105 …* The archive is closed afer reading the contents, because rewinding is not possible in bzip2 stre…
116 …his->closed || !$this->file) throw new VerboseTarIOException('Can not read from a closed archive');
238 * Add a file to the current TAR archive using an existing file in the filesystem
242 * @param string $name the name to use for the file in the archive
246 …if($this->closed) throw new VerboseTarIOException('Archive has been closed, files can no longer be…
277 * Add a file to the current TAR archive using the given $data as content
288 …if($this->closed) throw new VerboseTarIOException('Archive has been closed, files can no longer be…
308 * Add the closing footer to the archive if in write mode, close all file handles
310 * After a call to this function no more data can be added to the archive, for
313 …* "Physically, an archive consists of a series of file entries terminated by an end-of-archive ent…
345 * Returns the created in-memory archive data
347 * This implicitly calls close() on the Archive
361 * Save the created in-memory archive data
413 if($written === false) throw new VerboseTarIOException('Failed to write to archive stream');