I have searched a lot and I know how to open a directory dialog window. But what I am looking for is the method to open a directory folder under windows OS, just like you r
the answers here are for PyQt4.
So if you try these solutions you will get an error
So to deal with it, here I have the solution for PyQt5
dir_ = QtWidgets.QFileDialog.getExistingDirectory(None, 'Select project folder:', 'F:\\', QtWidgets.QFileDialog.ShowDirsOnly)
And you are done.
Thank me later!