/archive-fs

An implementation of JDK 1.7's FileSystemProvider to support the Tar file format

Primary LanguageJavaApache License 2.0Apache-2.0

archive-fs

This is a repository containing my implementations of JDK 1.7's FileSystem to support various archiving fromats.

tar-fs

A pure java implementation supprting the ustar file format. contains the following URL schemes to use:

"tar:" - pure .tar files - My own implementation
"tar.gz:" - .tar.gz files - Using java.util.zip package
"tar.bz2:" - .tar.bz2 files - Using Apache's Common Compress 1.8
"tar.xz:" - .tar.xz files - Using Apaches's Common Compress 1.8