Search code examples
pythonkivykivymd

How to select multiple files with Plyer Filechooser


How to select multiple files with Plyer FileChooser? I am able to select a single file though. I tried this:

filechooser.open_file(multiselect=True)

but it doesn't work. Also, the docs doesn't have much info.

Also, where can I find more about the argument (like how to specify the filetype) that I can pass to the open_file and other methods, because the docs doesn't have much info?


Solution

  • Take a look at this tutorial.

    You can pass multiple=True.

    The docs are admittedly not very clear, but here is the relevant portion of the source code for this functionality.