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!