AKA “Why zip compression doesn’t reduce things any more”.
Most file types are just a renamed .zip
Submitted 1 year ago by Interstellar_1@lemmy.blahaj.zone to showerthoughts@lemmy.world
Comments
AbouBenAdhem@lemmy.world 1 year ago
LodeMike@lemmy.today 1 year ago
?
AbouBenAdhem@lemmy.world 1 year ago
Zipping a file repeatedly typically doesn’t reduce the size further after the first time.
JasonDJ@lemmy.zip 1 year ago
My 1.5gb log folders disagree.
bjoern_tantau@swg-empire.de 1 year ago
Your MOM is a renamed zip!
And if not, wow, she really kept herself in shape. Very good.
moistclump@lemmy.world 1 year ago
She keeping them filled tight if you know what I mean
JackLSauce@lemmy.world 1 year ago
Counterpoint: what?
fine_sandy_bottom@lemmy.federate.cc 1 year ago
Not really. The “file types” you’re talking about are expected to contain whatever things in a very specific format.
You’re really just saying “many file types use an efficient and common compression algorithm”. Which is correct, obvious, and to be expected.
boletus@sh.itjust.works 1 year ago
A .docx is just a zip file with xml documents in it.
fine_sandy_bottom@lemmy.federate.cc 1 year ago
What happens if I put an mp3 or an epub file in there with the xml? Is it still a word document?
mumblerfish@lemmy.world 1 year ago
I don’t get it… I must be missing something about zipped files.
IHawkMike@lemmy.world 1 year ago
You’re not missing much. A few modern file types are zips with expected folder structures, especially MSOffice files. But this is nowhere near universally true.
You can open a file in your text editor of choice and if you see it start with PK (for Phil Katz the creator of the format and the original PKZIP/PKUNZIP programs) then it’s really a zip.
Also, by the logic of the OP, all DLLs are EXEs.
cron@feddit.org 1 year ago
OP refers to the fact that you can rename some filetypes to .zip and unpack them.
Notable examples microsoft office files (.docx) or android apps (.apk).
Counterexample are media files (mp3, mp4, jpg).
pixeltree@lemmy.blahaj.zone 1 year ago
Notably, java jar files as well.
mumblerfish@lemmy.world 1 year ago
OP refers to the fact that you can rename some filetypes to .zip and unpack them.
So… you mean the zip program just rename them back? Why?
thevoidzero@lemmy.world 1 year ago
There are basically two types of files. Text files and binary files.
Most information are stored in text files so humans can easily understand it, and it’s easier to find errors, review, parse. But text storage takes more space than binary files. And many complicated softwares normally need multiple text files or data files, many of them just store them together as a zip file so that it’s easier to handle. Examples are .docx,.pptx, etc files in MS Office, try unzipping them and see what they contain. Zipping also has advantages of reducing file sizes.
stoy@lemmy.zip 1 year ago
Take a .docx file, using 7-zip, exctract it.
You will get an entire folder structure with several files inside the .docx file.
What OP means is that several programs use a zip file as a container for all the stuff they need in a save file.
The file extention is just a name for the OS to find the proper program to open the file.
mumblerfish@lemmy.world 1 year ago
OK, thanks for all the answers. I get it, a “docx” is a zip archive expected to contain something specific making it a docx. But why “most” though?
Acamon@lemmy.world 1 year ago
I think ‘most’ is hyperbole for dramatic effect / increased engagement. “more files than you might think are actually following the zip file structure” isn’t as punchy.
JackGreenEarth@lemm.ee 1 year ago
Or a renamed txt. Eg, .js, .py, .css, .html, .json
victorz@lemmy.world 1 year ago
Thank God they went with file name extensions so we didn’t have to preface every source .txt file with header content to instruct the editor about what kind of content it would have.
foggy@lemmy.world 1 year ago
<!DOCTYPE JAVASCRIPT>
JackGreenEarth@lemm.ee 1 year ago
Why do I need to put that at the start of bash, desktop, and html files then?