4

I am having trouble searching for the method to assign to a Push Button the ability to choose a directory. I found this how to have a directory dialog in Pyqt, but I am still unsure about the method.

For example, I have a push button called new_directory and I have this code self.new_directory.clicked.connect(self.pick_new). What do I need to put into the function pick_new so that when new directory is clicked I can choose a new directory and have this stored in a variable?

Thanks!

Community
  • 1
  • 1
jim mako
  • 541
  • 2
  • 9
  • 28

1 Answers1

4

I think this might help you. With this you can get the directory.

def pick_new():
    dialog = QtGui.QFileDialog()
    folder_path = dialog.getExistingDirectory(None, "Select Folder")
    return folder_path
Rajiv Sharma
  • 6,746
  • 1
  • 52
  • 54