pyqt 实现界面文件选择功能,“选择文件夹”、“选择单个文件”、“选择多个文件”和“保存文件”

选择文件夹:

QFileDialog.getExistingDirectory(self, "选择文件夹", "/")

选择单个文件:

QFileDialog.getOpenFileName(self, "选择文件", "/", "All Files (*);;Text Files (*.txt)")

选择多个文件:

QtWidgets.QFileDialog.getOpenFileNames(self, "多文件选择", "/", "所有文件 (*);;文本文件 (*.txt)")

保存文件:

QtWidgets.QFileDialog.getSaveFileName(self, "文件保存", "/", "图片文件 (*.png);;(*.jpeg)")

 

你可能感兴趣的:(pyqt 实现界面文件选择功能,“选择文件夹”、“选择单个文件”、“选择多个文件”和“保存文件”)