SUMMARY SmugMug supports nested folders. Folders can contain folders or galleries. Galleries can contain photos or videos. DigiKam ignores this structure and displays only a flat list of galleries from all folders. This can be a long list, and makes it hard to find the right gallery if there are similar or same gallery names in different folders. STEPS TO REPRODUCE 1. Select Export -> Export to SmugMug... 2. Open the droplist for Album. OBSERVED RESULT A flat list of gallery names is displayed. EXPECTED RESULT A tree structure representing the folder/gallery structure on SmugMug, or at least a list that includes folder and gallery names as a path for each gallery. SOFTWARE/OS VERSIONS Windows: macOS: Linux/KDE Plasma: (available in About System) KDE Plasma Version: KDE Frameworks Version: Qt Version: ADDITIONAL INFORMATION
In SmugMug I created this test structure: /testFolder/testSubFolder/testGallery That is displayed in the exporter album list as: testGallery In the console logs while loading the exporter dialog, I see: unknown: album "JsTS3v,testGallery,7R3m63,testGallery,,,1,,0" In the JSON for parseResponseListAlbum, I see: { "Response": { "Album": [ { "AlbumKey": "7R3m63", "Name": "testGallery", "NiceName": "TestGallery", "NodeID": "JsTS3v", "Uris": { ... } "UrlPath": "/TestFolder/TestSubFolder/TestGallery", } ] } } There is data in the "Uris" object that could be used to assemble a fancy interactive tree structure, which would be nice, but it seems like the simple solution is to just display "UrlPath" in the album list instead of "Name".