Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • But why would compressing two files together be any more complicated than compressing two files individually? The compression algorithm doesn't care what bytestream we feed into it. Commented Aug 16, 2017 at 15:54
  • @amon I don't know the details for WinRAR but most people don't want/need to compress everything as a single stream so I doubt WinRAR defaults to it. Compressing everything together has the potential for better compression, but you lose random access - you have to decompress all the files to extract any file. Commented Aug 16, 2017 at 17:18
  • Ahh, ok. I did not know that the algorithm is only looking for patterns in small data parts. I get, that it would require a lot more calculation power to analyse the whole data, but I don't get why I wouldn't be able to extract single files from the compressed archive. What would make it impossible to extract a single file? Commented Aug 17, 2017 at 10:34