1684
.DS_Store (sh.itjust.works)
you are viewing a single comment's thread
view the rest of the comments
[-] Reddfugee42@lemmy.world 25 points 2 days ago

What's the use case for case sensitive file names

[-] Takumidesh@lemmy.world 66 points 2 days ago* (last edited 2 days ago)

Well an uppercase ASCII char is a different char than its lowercase counterpart. I would argue that not differentiating between them is an arbitrary rule that doesn't make any sense, and in many cases, is more computationally difficult as it involves more comparisons and string manipulations (converting everything to lower case).

And the result is that you ultimately get files with visually distinct names, that aren't actually treated as distinct, and so there is a disconnect from how we process information and how the computer is doing it.

'A' != 'a', they are just as unequal as 'a' and 'b'

Edit: I would say the use case is exactly the same as programming case sensitivity, characters have meaning and capitalizing them has intent. Casing strategies are immensely prevalent in programming and carry a lot of weight for identifying programmers' intent (properties vs backing fields as an example) similar intent can be shown with file names.

[-] Kissaki@programming.dev 6 points 2 days ago

Case insensitive handling protects end-users from doing "bad" things and confusion.

[-] Saleh@feddit.org 15 points 1 day ago

I work with a lot of users and a lot of files in my job.

I don't remember a single case, where someone had an issue because of upper- or lowercase confusions.

[-] moseschrute@lemmy.world 5 points 1 day ago

Most of my frustration comes from combining cases insensitive folders/files with git and then running my code on another machine. If you aren’t coding where you have hundreds of files that import other files, I could see this being a non issues.

[-] Kissaki@programming.dev 3 points 1 day ago

On a Linux environment? Mind sharing the usage area?

[-] Saleh@feddit.org 3 points 1 day ago

Mostly Windows, and construction industry. So projects generate anywhere from a few hundred to up to a hundred thousand files.

Everyone has their own filesystem, and then you often have one formal and multiple informal exchange platforms. You still have people throwing around stuff in E-Mails too.

It is a mess. But in this mess i didn't come acrosse people complaining they couldnt find a file because of the letters case yet.

I see that it could be different for programmers, but i dont see that apples solution of treating upper and lowercase as identical name is the solution there, rather than working with explicit file naming conventions in the program.

[-] Kissaki@programming.dev 7 points 1 day ago

Windows is / Windows filesystems are case insensitive too.

[-] Saleh@feddit.org 2 points 1 day ago* (last edited 1 day ago)

Hmm you're right. I didnt notice so far, nor was it brought up as an issue.

You can activate case sensitivity since Win 10 or so.

[-] SynopsisTantilize@lemm.ee 6 points 1 day ago

Like windows and their forbidden folder names

[-] Rednax@lemmy.world 7 points 1 day ago

Simple solution: only allow lower case characters in file names.

[-] Kissaki@programming.dev 4 points 2 days ago* (last edited 2 days ago)

is exactly the same as programming case sensitivity

Me working on a case insensitive DB collation 🤡🚀🐱‍🏍

[-] gazter@aussie.zone -1 points 2 days ago* (last edited 1 day ago)

If I have four files, a.txt, A.txt, b.txt, and B.txt, in what order do they appear when I sort alphabetically?

edit: I don't understand why this was downvoted?

[-] Speiser0@feddit.org 9 points 1 day ago

Might depend on your file browser.

You may also want to try, for example, the files "a1", "a2", "a3", and "a10". Lexicographically, "a2">"a10", but my file browser displays "a10" after "a2".

[-] Wildly_Utilize@infosec.pub 4 points 2 days ago
[-] pankkake@lemmy.world 10 points 2 days ago* (last edited 2 days ago)

A computer will spit out A, B, a, b

See also: ASCII chart

[-] gazter@aussie.zone 7 points 1 day ago

So if someone tells me to look for a file amongst a long list, I need to look in two different areas- the uppercase and lowercase areas.

I get why it's more technically correct to differentiate, but from the perspective of a human user, it's a pain in the ass.

[-] Ferk@programming.dev 1 points 18 hours ago* (last edited 18 hours ago)

I'm with you, and not just from a "human" perspective. Also when writing small programs meant to be relatively lean/simple it can be a problem when the user expects it to find a particular file regardless of its case (will it be DOOM.WAD or doom.wad? Doom.wad? Doom.WAD? ... guess it'll have to be [Dd][Oo][Oo][Mm].[Ww][Aa][Dd] and import some globbing library as extra dependency... that, or list the whole directory regardless its size and lower/upper every single filename until you find a matching one...)

[-] gazter@aussie.zone 1 points 9 hours ago

Oh jeez, I hadn't even thought about capitalisation in the file extension. That would be especially confusing if extensions are hidden- the user would be presented with two files that look exactly the same.

[-] Saleh@feddit.org 4 points 1 day ago

if you look for a file you type the first letters for the file explorer to jump to the matching name. Retype to jump to the next fitting entry. If you don't know about this, you can put your string in the search field. If you don't know about this, you can sort by metadata like file size or date of last change.

It is a non problem.

Also most workplaces tend to develop a file naming convention, either explicitly or implicitly.

[-] gazter@aussie.zone 3 points 1 day ago

But do I type 'ImportantFile', or 'importantfile'?

As I understand it, if I searched for either of these strings in a case sensitive file system, I would not find a file called 'IMPORTANTFILE'.

At best, a case sensitive file system makes naming conventions more complex. At worst , it obfuscates files. I just can't imagine a scenario where it would be helpful. Do you really see a need to have a file called 'aaaAaa' and a totally separate one called 'aaAaaa'?

[-] Saleh@feddit.org 1 points 1 day ago* (last edited 1 day ago)

The search string is case insensitive. The file name isnt.

So you will find all of them.

[-] Ferk@programming.dev 1 points 12 minutes ago* (last edited 5 minutes ago)

But then you are not getting rid of the complexity, you are just forcing programs to become more complex/inefficient.

I experience this with the doom libretro core, which is meant to be portable and have minimal dependencies... so if I need it to automatically find DOOM.WAD/ doom.wad/Doom.WAD/etc in a directory I would either add a globbing library as dependency to handle this case and have it fetch [Dd][Oo][Oo][Mm].[Ww][Aa][Dd], manually check for each possible case, or list the entire directory (I hope you don't have a library of a million wads!) and compare each file (after upper/lower) just to find the one with the right name. And that could be a real pain for devices with low I/O or if you are fetching it from a remote storage.

[-] Kissaki@programming.dev 3 points 2 days ago

Why would you order lowercase before uppercase?

[-] gazter@aussie.zone 4 points 1 day ago

Ascending order implies going from low to high

[-] SLVRDRGN@lemmy.world 1 points 1 day ago

I guess the problem is that they were thinking First to Last when putting it in this order. Kind of like the image here:

[-] moseschrute@lemmy.world 10 points 1 day ago

On Mac when I rename a folder from “FOO” to “foo” git sees them as the same folder so no change is committed. In JavaScript I import a file from “foo” so locally that works. Commit my code and someone else pulls in my changes on their machine. But on their machine the folder is still “FOO” so importing from “foo” doesn’t work.

[-] Speiser0@feddit.org 18 points 2 days ago

Think the other way around: What's the use case for case insensitive file names? Does it justify the effort and complexity for the filesystem and the programs to know the difference between lower and upper space chars?

[-] mindbleach@sh.itjust.works 16 points 2 days ago

What’s the use case for case insensitive file names?

Human comprehension.

Readme, readme, README, and ReadMe are not meaningfully different to the average user.

And for dorks like us oh my god, tab completion, you know I mean Documents, just take the fucking d!

In case you or others reading this don't know: You can set bash's tab-completion to be case-insensitive by putting

set completion-ignore-case on

Into your .inputrc (or globally /etc/inputrc)

[-] h0rnman@lemmy.dbzer0.com 4 points 1 day ago

For some extra fun, try interop between two systems that treat this differently. Create a SMB share on a Linux host, create a folder named TEST from a Windows client, then make Test, tEst, teSt, tesT, and test. Put a few different files in each folder on the Linux side, then try to manage ANY of it from the Windows client

[-] synae@lemmy.sdf.org 4 points 2 days ago

Because I want to?

this post was submitted on 28 Jan 2025
1684 points (99.6% liked)

Programmer Humor

20033 readers
1483 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS