frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Open in hackernews

We Are Doing Files Wrong (2021)

https://simonsafar.com/2021/we_are_doing_files_wrong/
5•Expurple•1y ago

Comments

jll29•1y ago
That's one of the few times I've read about a proposed innovation "in the spirit of UNIX" that was not already present in the original UNIX or one of its descendants.

  UNIX: Everything is a file.
  => A directory is a file.

  Parent post: Everything is a directory.
  A file is a directory.
I.e., a switch from "There are files and special files called directories that are handled differently." to the recursive definition "There are files, which are made up of 0..n files (blobs) and 0..n subdirectories" - so file versus directory is just a VIEW.

Makes sense & would make writing traversal code for files wiht internal structure much easier to read and write.

Expurple•1y ago
> to the recursive definition "There are files, which are made up of 0..n files (blobs) and 0..n subdirectories"

I think, it's more like "a file node contains metadata, a binary blob of data (may be empty), and 0..n child files".

Agreed that this idea is very elegant and removes special cases, nodes become uniform. And the argument for reusing the OS(FS)-provided tree abstraction is compelling.

Although, I can imagine some performance concerns in the real world. If implemented naively and similarly to the existing Unixes, this model results in a lot of small fragmented blocks and separate syscalls+descriptors for dealing with each small file. Also, when the "tree" is actually a sequential array of nameless elements, there's some extra overhead involved with writing and storing made-up file names, as well as sorting by name when reading. This could be remedied by some new API. And a single tree implementation reused by everything could be more cache-friendly than having a userland parser for every "old" format in every application.

Anyway, this mental model is useful and I'd like to see and try out the "automounting" that the author describes.

Expurple•1y ago
Can't edit the parent comment anymore, so I'll append my other thoughts here.

I remembered that the "automounting" already exists in some forms, and I really like these instances. When you click on an archive in a good file manager, it opens a "folder" view with the archive contents. The difference between an archive and a folder is arbitrary. It shouldn't exist and only complicates things for everybody. I assume that many applications today hand-code the logic for "if the user drags and drops a folder, we need to zip it before sending". Or they don't, and the user has to zip manually :)

One could say that storing program data as "transparent" folders instead of "opaque" binary files is too much detail for the user. And users can accidentally damage something (e.g. delete one of the files inside) more easily. But I have a few counter-points:

1. Many applications already use folders, but they're doing fine.

2. File managers already open many filetypes in an editor by default (e.g. plain text, office docs), but these files are doing fine.

3. A good file manager should recognize most file types and do the more reasonable and safe thing. If JPEG is reimplemented as a folder, clicking on a JPEG should still open the image viewer instead of the folder view. That's already the case with Mac OS app bundles (the example from the original post).

4. Actually, now that folders have a "data" field, it can be used for storing arbitrary metadata. This is extremely powerful and can be used for HIDING extra details from casual users! E.g. there could be a standartized metadata header that hints to the file manager that it should treat the folder as an "opaque" file and not show the user the contents. Now, old applications that already used folders for their internal state, can mark these folders as "opaque" and prevent casual users from messing with the contents! While still allowing to see, move and delete the folder as a whole (unlike hidden folders). And while providing uniform FS access to applications and advanced users.

Man, I really like this idea of arbitrary metadata for folders... It's not as necessary for files, because in practice you can just put the "metadata header" in the beginning of the main "data" (as many file formats do).

Expurple•1y ago
> I can imagine some performance concerns in the real world.

A friend has pointed out that, for performance reasons, games already tend to sidestep the filesystem and bundle everything into container/archive files, like .pak [1]. It also reminded me of how compile times are often noticeably faster on Linux vs Windows, because its filesystem is better optimized for handling many small files.

Honestly, it's weird and makes me kind of sad. Filesystems are such an important, convenient and (mostly) standardized and portable abstraction. But to this day, it's often a bottleneck and too slow for some domains. It seems like there's a lot of missed opportunity here.

> when the "tree" is actually a sequential array of nameless elements, there's some extra overhead involved with writing and storing made-up file names, as well as sorting by name when reading. This could be remedied by some new API.

As I keep thinking about it, the fastest approach is still a sequential binary blob. It avoids indirection, fragmentation and needlessly storing separate metadata for each element. A VFS mount could still be implemented on top, for accessing elements through a filesystem interface (something like `my_array_file/0`, reporting the same medatata as the parent).

But if storing separate FS-level metadata for each element is actually desirable and indirection+fragmentation isn't a critical problem, we could use folders for arrays. As a partial optimization, we could introduce a special "ordered" folder type. It requires explicitly ordering the subfiles on write, so that later listing the children is sorted and fast by default.

Option 1. The ordering is a separate metadata in the folder. Subfiles still have unique names that are not related to the ordering. This could be useful for the app, or could be unnecessary. POSIX apps (that don't know about "sorted folders") would still re-sort the subfiles by name and could get a different ordering as the result.

Option 2. The subfiles don't have user-provided names. For POSIX-compatibility, the VFS supports "artificial" file names like 0000000, 0000001, 0000002 (the number of digits according to the FS limits, sorts as text correctly) or 0, 1, 2 (prettier, independent of the FS limits and portable, but doesn't sort correctly as text).

In some sense, this special folder type is against the spirit of the original article. It has special write restrictions that prevent treating every inode the same way (as an arbitratily writetable folder). But it's still in the spirit of the original in the sense of reusing the standard FS abstractions and features as much as possible.

[1] https://quakewiki.org/wiki/.pak

Starbucks Is One of the Largest Banks

https://www.msn.com/en-us/money/companies/starbucks-is-secretly-one-of-the-world-s-largest-banks/...
1•ColinWright•1m ago•0 comments

Guy in his basement invents a drug to treat Alzheimer's disease

https://twitter.com/DouglasYaoDY/status/2070904914050797582
1•binyu•3m ago•0 comments

NASA tests AI medic for astronauts too far from Earth to call a doctor

https://www.theregister.com/ai-and-ml/2026/06/27/nasa-tests-ai-medic-for-astronauts-too-far-from-...
1•LorenDB•4m ago•0 comments

Show HN: Sambee – browser-based file manager for SMB shares and local drives

https://sambee.net
1•helgek•4m ago•0 comments

Warp Point: A curated webring of video game websites

https://www.warppoint.games/
1•mysterydip•4m ago•0 comments

The crowd-funded Porsche 911

https://project996.fun
1•mhavelka77•7m ago•2 comments

Show HN: Parseflow – Extract data from any document. Entirely on your Mac

https://www.parseflow.io/
1•devtanna•12m ago•0 comments

Beyond symbolic algebra with quantum picturalism

https://www.frontiersin.org/journals/cognition/articles/10.3389/fcogn.2026.1790789/full
1•mathgenius•13m ago•0 comments

Denoising Voice Recordings On-Device

https://www.duration.ai/blog/denoising-voice-recordings-on-device
1•sudb•15m ago•0 comments

Ask HN: Are OTA updates for native iOS/Swift apps allowed?

1•jackappdev•18m ago•0 comments

Cypherpunk Library

https://www.cypherpunklibrary.com/collection
1•bookofjoe•18m ago•0 comments

Nearly Three-Quarters of Dutch Responses to EU Tobacco Rules Were AI-Generated

https://pointer.kro-ncrv.nl/meerderheid-nederlandse-inspraak-op-strengere-eu-tabakswet-afkomstig-...
2•stefanvdw1•22m ago•0 comments

Ask HN: If someone invested $100k now for your startup, how would you spend it?

4•aurenvale•27m ago•0 comments

Tldr.fail – buggy servers break PQ KEX compatibility in TLS

https://tldr.fail/
1•basilikum•29m ago•0 comments

Kids Act Would Require Age Checks to Get Online

https://www.eff.org/deeplinks/2026/06/kids-act-would-require-age-checks-get-online
2•bilsbie•30m ago•0 comments

CORS Explained in Plain English

https://sanyamserver.online/posts/cors/
1•RickJWagner•31m ago•0 comments

More evidence of life on Mars but still no life

https://www.cbc.ca/radio/quirks/more-evidence-of-life-on-mars-but-still-no-life-1.7649645
9•pseudolus•32m ago•2 comments

From Prompts to Loops: Building Autonomous Coding Agents

https://animeshgaitonde.medium.com/from-prompts-to-loops-building-autonomous-coding-agents-6135bf...
1•animesh371g•33m ago•0 comments

Expect Claude Fable 5 to Be Turned Back on in a Matter of Days, Report Says

https://gizmodo.com/expect-claude-fable-5-to-be-turned-back-on-in-a-matter-of-days-report-says-20...
2•HiroProtagonist•34m ago•0 comments

Beyond Functional Programming: The Verse Programming Language (2022) [pdf]

https://simon.peytonjones.org/assets/pdfs/haskell-exchange-22.pdf
1•tosh•34m ago•0 comments

France records around 1k additional deaths amid extreme heat wave

https://apnews.com/article/europe-heat-temperature-records-france-deaths-germany-61f444317600cf1b...
2•geox•34m ago•0 comments

Almavivo – The On-Device Health Platform

https://almavivo.com
2•morog•38m ago•0 comments

Policy Pulse – Issue #21 – Week of June 27, 2026

https://blog.disclose.io/policy-pulse-issue-21-week-of-june-27-2026/
1•jruohonen•41m ago•0 comments

Show HN: Warren – run isolated instances of any CLI tool (no containers,no root)

https://github.com/swadhinbiswas/warren
1•0xER•41m ago•0 comments

Shadcn/UI components that can be used without react

https://basecoatui.com/
2•buckwheatmilk•42m ago•1 comments

Imagine Telling Someone in 1999

https://twitter.com/JesseTinsley/status/2070306180543500530
1•ksec•43m ago•0 comments

Show HN: Genius AI Detector

https://geniusaidetector.com/
2•Rudism•43m ago•0 comments

GhostGrid drift detection and edge tamper evidence via Ed25519

https://ghostgrid.dannygc.cloud/
1•aisoverighn•44m ago•0 comments

Artificial rain isn’t a solution to drought, according to a cloud-seeding expert

https://www.swissinfo.ch/eng/climate-adaptation/why-artificial-rain-is-not-a-solution-to-drought/...
1•giuliomagnifico•44m ago•0 comments

Perceus: Garbage free reference counting with reuse

https://dl.acm.org/doi/10.1145/3453483.3454032
1•fanf2•45m ago•0 comments