PyQt - How to open a directory folder?

前端 未结 6 2066
情歌与酒
情歌与酒 2021-01-19 06:03

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

6条回答
  •  广开言路
    2021-01-19 06:18

    Try this:

    dir_ = QtGui.QFileDialog.getExistingDirectory(None, 'Select a folder:', 'C:\\', QtGui.QFileDialog.ShowDirsOnly)
    

    If the user hits cancel, then dir_ is empty.

提交回复
热议问题