选择文件夹:
QFileDialog.getExistingDirectory(self, "选择文件夹", "/")
选择单个文件:
QFileDialog.getOpenFileName(self, "选择文件", "/", "All Files (*);;Text Files (*.txt)")
选择多个文件:
QtWidgets.QFileDialog.getOpenFileNames(self, "多文件选择", "/", "所有文件 (*);;文本文件 (*.txt)")
保存文件:
QtWidgets.QFileDialog.getSaveFileName(self, "文件保存", "/", "图片文件 (*.png);;(*.jpeg)")