The FileDialog in pyqt is an excellent way to get one path for a file from the user, but is there a good way to get a large number of file selections from the user?
|
feedback
|
|
Use QFileDialog.getOpenFileNames to allow the user to select multiple files:
| |||
|
feedback
|
|
I would suggest you to let the user use drag & drop to add files directly from their favorite file browser. As I did this in wxpython without any trouble and user-feedbacks are pretty good :) | |||
|
feedback
|
Shift+ClickandCtrl+Click. – D K Dec 14 '11 at 2:06