@markswift:   i've used consld8 recently for my Movies Collection for the same reason you wish. Since I have a few thousand movie folders, i used following command: (USE AT OWN RISK) find "/mnt/user/Media/Movies" -mindepth 1 -maxdepth 1 -type d -print0 | xargs -0 -n 1 consld8 -f the find command goes through the submitted path (in this case /mnt/user/Media/Movies) and only lists directories (-type d). with help of maxdepth, i tell find to not include any subdirectories in the listing.
    • Like
    2