How to list only directories in Kivy FileChooser? I've read about callback filters, but didn't found any examples.
My Kv code:
<Saveto>:
select: select
chooser: chooser
orientation: 'vertical'
FileChooserIconView:
id: chooser
size_hint_y: 0.9
rootpath: home
dirselect: True
filters: ['How to list folders only?']
Button:
...select button...