• fine_sandy_bottom@lemmy.federate.cc
    link
    fedilink
    arrow-up
    12
    arrow-down
    1
    ·
    14 hours 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.

    • Victor@lemmy.world
      link
      fedilink
      arrow-up
      57
      ·
      1 day 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.

        • Revan343@lemmy.ca
          link
          fedilink
          arrow-up
          3
          ·
          5 hours ago

          For shell scripts it’s because bash isn’t the only shell; if you leave out the shebang line, Ubuntu will run your script in Dash instead

        • xigoi@lemmy.sdf.org
          link
          fedilink
          English
          arrow-up
          4
          ·
          edit-2
          11 hours ago

          For HTML, it’s to distinguish “standards mode” HTML from “quirks mode” HTML (which doesn’t need a header).

        • cron@feddit.org
          link
          fedilink
          arrow-up
          14
          arrow-down
          1
          ·
          1 day ago

          Because both ways are used. Microsoft relies on file names, linux on the first bytes of the file.

          • Consti@lemmy.world
            link
            fedilink
            arrow-up
            16
            ·
            edit-2
            1 day ago

            Not quite correct. For html, that is to signal standard compliance, you can leave it away and the browser will still handle it. For the bash one, all (most) shell scripts use .sh, so you need to give a shebang to tell the loader which executable (sh, bash, zsh, csh, …) to use

            Also on Linux xdg does take file extensions into account, just executables do not

        • Kairos@lemmy.today
          link
          fedilink
          arrow-up
          1
          ·
          23 hours ago

          Nothing unless you want to serve them without some other way to see what file type they are.

          You can run bash scripts with bash.

          Don’t know what a desktop file is.

          HTML has that because webservers used to not have auto media type detection and response headers.

    • LostXOR@fedia.io
      link
      fedilink
      arrow-up
      14
      ·
      21 hours ago

      I see images, audio, or video files distributed in zips far too often. You’re getting maybe a percent of compression if you’re lucky; just distribute the raw files or use a non-compressed bundle format like tar.

      • undefined@links.hackliberty.org
        link
        fedilink
        arrow-up
        3
        ·
        16 hours ago

        Not sure what the original point was but curiously I happened to use file on a an Apple .numbers file recently and found that it was a .zip file in disguise with zero compression.

        So maybe the point was that it’s used often as a container format more often than it’s used for compression? Just my (unrelated) general computer work would also suggest this.

    • IHawkMike@lemmy.world
      link
      fedilink
      arrow-up
      34
      ·
      edit-2
      1 day 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 probably a zip.

      Also, by the logic of the OP, all DLLs are EXEs.

    • cron@feddit.org
      link
      fedilink
      arrow-up
      20
      ·
      1 day 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).

      • mumblerfish@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        1 day 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?

        • cron@feddit.org
          link
          fedilink
          arrow-up
          14
          ·
          1 day ago

          I think it makes sense from a programming view. When you have a document, you can add all the media files and pack them together as one archive. Then the program sets the filename to .docx so everyone knows that they need an office program to open that file.

          For the users, all you need to know is what program can open which files. If every document would be named .zip, you would have no idea if it was a spreadsheet or slides for your presentation.

          • mumblerfish@lemmy.world
            link
            fedilink
            arrow-up
            2
            ·
            1 day ago

            I got that from the other answers. I was just very confused why I’d have to rename them to “.zip”.

            I still don’t get why it is “most” files.

            • stoy@lemmy.zip
              link
              fedilink
              arrow-up
              3
              ·
              17 hours ago

              You don’t have to rename them, doing so would just make windows default to using the builtin zip extractor.

              If you have 7-zip you can just right click the file you wan to explore and try to extract it.

            • cron@feddit.org
              link
              fedilink
              arrow-up
              8
              ·
              1 day ago

              I don’t think “most” applies here. Text-based files, pdf, media files and most executeable files are not .zip.

    • thevoidzero@lemmy.world
      link
      fedilink
      arrow-up
      12
      ·
      1 day 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
      link
      fedilink
      arrow-up
      12
      arrow-down
      1
      ·
      1 day 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
      link
      fedilink
      arrow-up
      4
      ·
      1 day 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
        link
        fedilink
        arrow-up
        4
        ·
        1 day 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.

        • Interstellar_1@lemmy.blahaj.zoneOP
          link
          fedilink
          arrow-up
          3
          ·
          1 day ago

          I just didn’t think of too many file extensions when I had this thought. I was also thinking of more obscure file extensions, and not the main media formats.