TarArchive |
TarArchive.createEntries(File directory) |
Adds to the archive all the files and directories recursively in the directory given.
|
TarArchive |
TarArchive.createEntries(File directory,
boolean includeRootDirectory) |
Adds to the archive all the files and directories recursively in the directory given.
|
TarArchive |
TarArchive.createEntries(String sourceDirectory) |
Adds to the archive all the files and directories recursively in the directory given.
|
TarArchive |
TarArchive.createEntries(String sourceDirectory,
boolean includeRootDirectory) |
Adds to the archive all the files and directories recursively in the directory given.
|
TarArchive |
TarArchive.deleteEntry(int entryIndex) |
Removes the entry from the entry list by index.
|
TarArchive |
TarArchive.deleteEntry(TarEntry entry) |
Removes the first occurrence of a specific entry from the entry list.
|
static TarArchive |
TarArchive.fromGZip(InputStream source) |
Extracts supplied gzip archive and composes TarArchive from extracted data.
|
static TarArchive |
TarArchive.fromGZip(String path) |
Extracts supplied gzip archive and composes TarArchive from extracted data.
|
static TarArchive |
TarArchive.fromLZ4(InputStream source) |
Extracts supplied LZ4 archive and composes TarArchive from extracted data.
|
static TarArchive |
TarArchive.fromLZ4(String path) |
Extracts supplied LZ4 archive and composes TarArchive from extracted data.
|
static TarArchive |
TarArchive.fromLZip(InputStream source) |
Extracts supplied lzip archive and composes TarArchive from extracted data.
|
static TarArchive |
TarArchive.fromLZip(String path) |
Extracts supplied lzip archive and composes TarArchive from extracted data.
|
static TarArchive |
TarArchive.fromLZMA(InputStream source) |
Extracts supplied LZMA archive and composes TarArchive from extracted data.
|
static TarArchive |
TarArchive.fromLZMA(String path) |
Extracts supplied LZMA archive and composes TarArchive from extracted data.
|
static TarArchive |
TarArchive.fromXz(InputStream source) |
Extracts supplied xz format archive and composes TarArchive from extracted data.
|
static TarArchive |
TarArchive.fromXz(String path) |
Extracts supplied xz format archive and composes TarArchive from extracted data.
|
static TarArchive |
TarArchive.fromZ(InputStream source) |
Extracts supplied Z format archive and composes TarArchive from extracted data.
|
static TarArchive |
TarArchive.fromZ(String path) |
Extracts supplied Z format archive and composes TarArchive from extracted data.
|
static TarArchive |
TarArchive.fromZstandard(InputStream source) |
Extracts supplied Zstandard archive and composes TarArchive from extracted data.
|
static TarArchive |
TarArchive.fromZstandard(String path) |
Extracts supplied Zstandard archive and composes TarArchive from extracted data.
|