popcar2@programming.dev to Programmer Humor@programming.devEnglish · 10 months agoS&Box went open-source and the comments are very calmimagemessage-square56linkfedilinkarrow-up1634arrow-down15file-text
arrow-up1629arrow-down1imageS&Box went open-source and the comments are very calmpopcar2@programming.dev to Programmer Humor@programming.devEnglish · 10 months agomessage-square56linkfedilinkfile-text
minus-squareZoteTheMighty@lemmy.ziplinkfedilinkarrow-up26arrow-down1·10 months agoToLower() to compare paths 🤮
minus-squarepet the cat, walk the dog@lemmy.worldlinkfedilinkarrow-up7·10 months agoApple’s filesystems in fact have an option for case-sensitivity.
minus-squareHolla@feddit.orglinkfedilinkarrow-up2·10 months agoapfs is by default case-insensitiv, for some reason, so the paths would still be the same. It apparently even causes issues with some installers when macos runs on apfs(case-sensitive)
minus-square𝙲𝚑𝚊𝚒𝚛𝚖𝚊𝚗 𝙼𝚎𝚘𝚠@programming.devlinkfedilinkarrow-up3·10 months agoThere are StringComparison options to pass that allow you to ignore case sensitivity when comparing. No need for ToLower.
ToLower()to compare paths 🤮it’s valid on macos tho…
Apple’s filesystems in fact have an option for case-sensitivity.
Then they’re not the same path…
apfs is by default case-insensitiv, for some reason, so the paths would still be the same. It apparently even causes issues with some installers when macos runs on apfs(case-sensitive)
There are StringComparison options to pass that allow you to ignore case sensitivity when comparing. No need for ToLower.