Returns the list of filenames from the current pos to the end of the source The source will be closed after having called this function This function goes through the whole archive (which may be slow).
Return a writer that allows appending files to the archive After having called makeAppendWriter, $this is closed and should not be used until the returned writer is closed.
Return a writer that has the same properties as the one returned by makeWriter, but after having removed a block of data from the current file. The writer will append data to the current file no data (other than the block) will be removed
Return a writer that has the same properties as the one returned by makeAppendWriter, but after having removed all the files that follow a given predicate.
[line 45]
Add a directory to the public name of all the files of a reader
Example: If archive.tar is a file archive containing files a.txt and foo/b.txt new File_Archive_Reader_AddBaseName('bar', new File_Archive_Reader_Tar( new File_Archive_Reader_File('archive.tar') ) ) is a reader containing files bar/a.txt and bar/foo/b.txt
Overrides File_Archive_Reader::getFileList() (Returns the list of filenames from the current pos to the end of the source The source will be closed after having called this function This function goes through the whole archive (which may be slow).)