PyQT
I created a button Upload. I hope to have the function of clicking on the button will direct me to selecting my file which contains of images, bulk of images and copy them into another specific folder named "Upload"
def upload_csv(self):
dialog = QtGui.QFileDialog()
fname = dialog.getOpenFileName(None, "Import CSV", "", "CSV data files (*.csv)")
Comments
Leave a comment