Pythonista
Pythonista

Reputation: 11635

alternative to kivy filechooser

Is there a way to make kivy's built in filechooser be able to choose directories as well as files?

I had looked at kivy garden's filebrowser, but wanted to know if there was a simpler solution.

Upvotes: 2

Views: 384

Answers (1)

Pythonista
Pythonista

Reputation: 11635

Turns out there is a really easy solution.

I'm using .kv files so for me the solution is

 FileChooserIconView:
      ...
      dirselect: True #This is just disabled by default

Upvotes: 3

Related Questions