Lines Matching full:archive

7  * File/Archive/* directories
30 * @version CVS: $Id: Archive.php,v 1.85 2005/08/16 08:48:59 vincentlascaux Exp $
60 * File/Archive/* directories
104 * file present in the archive when adding a new one. This will slow the
160 * b.tar (archive that contains the following files)
162 * d.tgz (archive that contains the following files)
169 * h.tar (archive that contains the following files)
295 require_once 'File/Archive/Reader.php';
335 require_once "File/Archive/Reader/Directory.php";
336 require_once "File/Archive/Reader/ChangeName.php";
339 require_once "File/Archive/Reader/Uncompress.php";
349 require_once 'File/Archive/Reader/Filter.php';
350 require_once 'File/Archive/Predicate/MaxDepth.php';
373 require_once "File/Archive/Reader/File.php";
378 require_once "File/Archive/Reader/File.php";
383 // (to manage URLs like archive.tar/directory/file)
415 require_once "File/Archive/Reader/Select.php";
419 require_once "File/Archive/Reader/Uncompress.php";
436 require_once "File/Archive/Predicate/MaxDepth.php";
450 require_once "File/Archive/Reader/ChangeName.php";
530 require_once "File/Archive/Reader/File.php";
555 require_once 'File/Archive/Reader/Cache.php';
595 require_once 'File/Archive/Writer/Multi.php';
606 * Check if a file with a specific extension can be read as an archive
632 * a specific archive
634 * @param string $extension determines the kind of archive $source contains
636 * @param File_Archive_Reader $source stores the archive
637 * @param bool $sourceOpened specifies if the archive is already opened
639 * Closing the returned archive will close $source iif $sourceOpened
641 * @return A File_Archive_Reader that uncompresses the archive contained in
642 * $source interpreting it as a $extension archive
662 require_once 'File/Archive/Reader/Tar.php';
667 require_once 'File/Archive/Reader/Gzip.php';
671 require_once 'File/Archive/Reader/Zip.php';
676 require_once 'File/Archive/Reader/Bzip2.php';
681 require_once 'File/Archive/Reader/Ar.php';
685 require_once 'File/Archive/Reader/Cab.php';
690 require_once "File/Archive/Reader/Rar.php";
711 require_once "File/Archive/Reader/Memory.php";
727 require_once "File/Archive/Reader/Multi.php";
759 require_once "File/Archive/Reader/Concat.php";
778 require_once "File/Archive/Reader/Filter.php";
788 require_once "File/Archive/Predicate/True.php";
798 require_once "File/Archive/Predicate/False.php";
811 require_once "File/Archive/Predicate/And.php";
829 require_once "File/Archive/Predicate/Or.php";
845 require_once "File/Archive/Predicate/Not.php";
856 require_once "File/Archive/Predicate/MinSize.php";
868 require_once "File/Archive/Predicate/MinTime.php";
880 require_once "File/Archive/Predicate/MaxDepth.php";
892 require_once "File/Archive/Predicate/Extension.php";
905 require_once "File/Archive/Predicate/MIME.php";
917 require_once "File/Archive/Predicate/Ereg.php";
929 require_once "File/Archive/Predicate/Eregi.php";
943 require_once "File/Archive/Predicate/Index.php";
970 require_once "File/Archive/Predicate/Custom.php";
987 require_once "File/Archive/Writer/Mail.php";
1000 require_once "File/Archive/Writer/Files.php";
1024 require_once "File/Archive/Writer/Memory.php";
1045 require_once "File/Archive/Writer/Multi.php";
1061 require_once "File/Archive/Writer/Output.php";
1067 * @param string $filename name of the archive file
1068 * @param File_Archive_Writer $innerWriter writer where the archive will be
1074 * @param array $stat Statistics of the archive (see stat function)
1076 * the returned archive is close. Default value is true.
1105 require_once "File/Archive/Writer/Tar.php";
1112 require_once "File/Archive/Writer/Zip.php";
1120 require_once "File/Archive/Writer/Gzip.php";
1128 require_once "File/Archive/Writer/Bzip2.php";
1136 require_once "File/Archive/Writer/Ar.php";
1144 return PEAR::raiseError("Archive $extension unknown");
1167 * File_Archive::extract($src = 'archive.zip/', $dest = 'dir') will extract the archive to 'dir'
1170 * File_Archive::read('archive.zip/'),
1194 * Create a writer that can be used to append files to an archive inside a source
1195 * If the archive can't be found in the source, it will be created
1197 * If type is set to null, the type of the archive will be determined looking at
1200 * to use if the archive must be created
1203 * archive will be created and if your creation requires creating several nested
1210 * @param string $URL URL to reach the archive in the source.
1216 * @param string $type Extension of the archive (or null to use the one in the URL)
1217 * @param array $stat Used only if archive is created, array of stat as returned
1218 * by PHP stat function or Reader getStat function: stats of the archive)
1233 //Do not report the fact that the archive does not exist as an error
1253 require_once "File/Archive/Writer/UniqueAppender.php";
1295 require_once "File/Archive/Writer/AddBaseName.php";
1307 * Create a writer that allows appending new files to an existing archive
1352 * Remove the files that follow a given predicate from the archive specified
1355 * @param $URL URL of the archive where some files must be removed
1365 * the archive if the files have same date or no date specified)
1383 require_once "File/Archive/Predicate/Duplicate.php";
1394 * Remove duplicates from the archive specified in the URL