richgel999 / lzham_codec

Lossless data compression codec with LZMA-like ratios but 1.5x-8x faster decompression speed, C/C++
Other
695 stars 71 forks source link

lzham compress the whole directory? #15

Open nhudinhtuan opened 8 years ago

nhudinhtuan commented 8 years ago

I would like to compress the whole directory to a single file, it is good if you can provide that method.

zao commented 8 years ago

Traditionally, grouping of files into an archive tends to be orthogonal to compression. Some formats conflate this, but lzham is a pure compression scheme.

You may want to look at using tar archives, or use lzham as the compression component of a 7z archive, if still possible.