I know that there are many free and not so free compression libraries out there, but for the project i am working on, i need to be able to take file data from a stream and put it into some kind zip or pack file, but without compression, because i will need to access these files quickly without having to wait for them to decompress.
Anyone know how this could be approached, or if there are some libraries out there that do this that i am not aware of?
You can use Zip for this. You would use a compression level of something like ‘none’ or ‘store’, which just combines the files without compression. This site enumerates some of them:
Here are some C# examples:
For the unix unaware, this is exactly what
tardoes. When you see .tar.gz files, it’s just a bunch of files combined into atarfile, and then run through gzip.