PyQt5開啟檔案對話方塊QFileDialog執行個體代碼,pyqt5qfiledialog

來源:互聯網
上載者:User

PyQt5開啟檔案對話方塊QFileDialog執行個體代碼,pyqt5qfiledialog

本文研究的主要是PyQt5開啟檔案對話方塊QFileDialog的程式碼範例,具體如下。

單個檔案開啟 QFileDialog.getOpenFileName()
多個檔案開啟 QFileDialog.getOpenFileNames()
檔案夾選取 QFileDialog.getExistingDirectory()
檔案儲存 QFileDialog.getSaveFileName()

執行個體代碼:

from PyQt5 import QtWidgetsfrom PyQt5.QtWidgets import QFileDialogclass MyWindow(QtWidgets.QWidget):  def __init__(self):    super(MyWindow,self).__init__()    self.myButton = QtWidgets.QPushButton(self)    self.myButton.setObjectName("myButton")    self.myButton.setText("Test")    self.myButton.clicked.connect(self.msg)  def msg(self):    directory1 = QFileDialog.getExistingDirectory(self,                  "選取檔案夾",                  "./")                 #起始路徑    print(directory1)    fileName1, filetype = QFileDialog.getOpenFileName(self,                  "選取檔案",                  "./",                  "All Files (*);;Text Files (*.txt)")  #設定副檔名過濾,注意用雙分號間隔    print(fileName1,filetype)    files, ok1 = QFileDialog.getOpenFileNames(self,                  "多檔案選擇",                  "./",                  "All Files (*);;Text Files (*.txt)")    print(files,ok1)    fileName2, ok2 = QFileDialog.getSaveFileName(self,                  "檔案儲存",                  "./",                  "All Files (*);;Text Files (*.txt)")if __name__=="__main__":   import sys   app=QtWidgets.QApplication(sys.argv)   myshow=MyWindow()  myshow.show()  sys.exit(app.exec_()) 
總結

以上就是本文關於PyQt5開啟檔案對話方塊QFileDialog執行個體代碼的全部內容,希望對大家有所協助。感興趣的朋友可以繼續參閱本站其他相關專題,如有不足之處,歡迎留言指出。感謝朋友們對本站的支援!

相關關鍵詞:
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.