The `normalizeFilePath` function we use in some file manipulation functions [assumes that all macOS file systems are case-insensitive]( https://github.com/PowerShell/vscode-powershell/blob/ab5ee300b37c3f5fe2c4a83e0370d8b92d628822/src/features/ExtensionCommands.ts#L450), which is not true. HFS+ and APFS have case-sensitive variants that we should try not to break. Also worth noting that NTFS is [also case-sensitive](https://superuser.com/questions/364057/why-is-ntfs-case-sensitive), but Windows is not. In general, I think we should not try to second guess the operating system and be case-preserving.