About a year ago I completely switched my photography workflow from macOS to Linux (opensuse tumbleweed) and consequently Digikam and darktable.
I can only be more than satisfied.
However, I noticed something I had never noticed before.
I save images in a filesystem sorted by date, such as:
$ ls -1 Memories/sessions/2024/
2024-01/
2024-04/
2024-05/
2024-06/
2024-07/
$ ls -1 Memories/sessions/2024/2024-04/
'2024-04-21 - Spain - Vinaros'/
'2024-04-22 - Spain - Valencia - Ciudad de las Artes y las Ciencias'/
'2024-04-24 - Spain - Vinaros'/
'2024-04-27 - France - Saint Raphael'/
$ ls -1 Memories/sessions/2024/2024-04/2024-04-24\ -\ Spain\ -\ Vinaros/
2024-04-24T10:21:17_X100F_000.jpg*
2024-04-24T10:21:17_X100F_000.jpg.xmp
2024-04-24T10:21:17_X100F_000.raf*
2024-04-24T10:21:17_X100F_000.raf.xmp
2024-04-24T10:21:33_X100F_000.jpg*
2024-04-24T10:21:33_X100F_000.jpg.xmp
2024-04-24T10:21:33_X100F_000.raf*
2024-04-24T10:21:33_X100F_000.raf.xmp
2024-04-24T10:21:33_X100F_001.raf*
2024-04-24T10:21:33_X100F_001.raf.xmp
...
As you can see my default for renaming files is.
[date: "ISO"]_[meta:Exif.Image.Model].[ext]{lower}
which is the default string I use in digikam to rename image folders.
All my image storage now follows this convention, and as long as I am on Linux (XFS filesystem) the file names are displayed correctly, especially the ISO date that contains the “:” character.
This is also true for backups/copies that are on a NAS (btrfs) that I mount via SMB and that display correctly on Linux.
Only today after about a year have I realized that macOS (APFS filesystem) does not display the file name correctly but replaces the “:” with “/” even when mounting the SMB folders.
Personally I liked the idea of using the ISO format precisely because it is a standard, a convention that can be useful in case of automation, scripting etc. but I would not want it to be more of a problem than an advantage in this case.
This is currently not a problem and I don’t want to rename everything again but I wonder if you guys follow different conventions and if you could share you opinion on this topic.
Thanks.