• @pyre
    link
    1810 days ago

    what a mess

    • @[email protected]
      link
      fedilink
      1110 days ago

      There’s a little historical baggage, but look at Windows: multiple letters for drives, and all of the paths can be modified, so you have to ask Windows where any important directory is physically mapped (like SystemRoot or Documents or Temp or Roaming AppData or many others), because it doesn’t have this nice consistent structure like Linux. Linux presents a logical layer and manages the physical location automatically. Windows makes you do the logical lookup yourself, but doesn’t enforce it, so inexperienced programmers make assumptions and put stuff where the path usually is.

      That’s part of why logging in to Windows over a slow connection can take forever if you have a bunch of Electron apps installed: they’ve mismapped their temp/cache directory under the Roaming AppData, so it gets synched at every login, often GiB of data, and they refuse to fix it.

      • @[email protected]
        link
        fedilink
        610 days ago

        I switched to Linux a few years ago and you are not wrong.

        Windows is a nightmare with directory organization.

        Saved games can go:

        • My Documents/
        • My Documents/Games
        • My Documents/My Games
        • <app>/saved-games
        • @[email protected]
          link
          fedilink
          710 days ago

          I’m more used to seeing shit like: c:/users/username/appdata/local/developer/game/engine/data3/saves/profile0/epe90_cats90-slot203.nonstandardfileformat

          • @[email protected]
            link
            fedilink
            510 days ago

            And then their non standard file format turns out to just be a zip file or gzipped JSON data 😂