I have made some folder synchronization program in the last week that I wanted to primarily deploy to have an easy way to update security copies at an external harddrive or my phone, instead of having to delete all and copy all, which can take time with files in thousands and gigabytes every time.
The program was already finished and worked in my diverse testing series, with one fatal flaw: I only tested it on the computer itself, but when I finally wanted to copy the real data, I had to find that the tkinter dialog would not recognize any external device.
Here a screen showing the device in explorer and missing in the dialog window:
I searched around for a while and it seems that the tkinter solution is simply functionally impoverished and incomplete, so I will have to look somewhere else. In one answer someone recommended to write your own folder selection dialog somewhere, but I have not yet found guidance how to do so.(e.g. is there a os function I could summon? perhaps a module that offers more control?) Maybe tkinter can even be saved, though I doubt it.