|
Class Summary |
| AbstractMultiCompress |
Abstract ancestor for compression algorithms that allow the compression
of multiple files (incl directory structure). |
| AbstractMultiDecompress |
Ancestor for compression schemes that manage archives with multiple files
(incl directory structure) like zip archives. |
| AbstractSingleCompress |
Ancestor for compression algorithms that only take a single file, like
gzip. |
| AbstractSingleDecompress |
Ancestor for decompression algorithms that only work with archives
that consists of a single file, like gunzip. |
| Bzip2 |
Creates a bzip2 archive from a single file. |
| GUNZIP |
Decompresses an archive that was compressed with gzip. |
| GZIP |
Creates a GZIP archive from a single file. |
| Lzf |
Creates a LZF archive from a single file. |
| Lzma |
Creates a LZMA (7zip) archive from a single file. |
| Tar |
Creates a Tar file containing one or more files. |
| UnBzip2 |
Decompresses an archive that was compressed with bzip2. |
| UnLzf |
Decompresses an archive that was compressed with LZF. |
| UnLzma |
Decompresses an archive that was compressed with LZMA (7zip). |
| UnTar |
Decompresses a Tar archive and broadcasts the full file names of the extracted files. |
| UnZIP |
Unzips a ZIP archive and broadcasts the full file names of the extracted files. |
| ZIP |
Creates a ZIP file containing one or more files. |