The documentation for QFileDialog.getOpenFileName does not provide any clue on how to filter only executables using a const QString &filter = QString(). Here’s the code for my action using PyQt5: On linux, naturally, I have no file extensions for executables, but I need to filter .exe extensions on windows (Which I intend to provide a version for). Also, there’s no
Tag: qfiledialog
QFileDialog to open multiple files
I am trying to show a dialog box to open multiple files but seems like it is not working. The following is a function defined in my Class: I thought that the keyword was QFileDialog.ExistingFiles. What am I doing wrong here? Answer You need to use getOpenFileNamesAndFilter instead of getOpenFileNameAndFilter (you’re missing the s).