python使用tkinter模塊實現文件選擇功能
前言
學習Python中,總想做個圖形界面,找來找去,找到瞭tkinter。
練習內容:圖形界面中,點擊按鈕後,利用彈出對話框選擇文件(或文件夾)
1.導入庫和模塊
import tkinter as tk from tkinter import filedialog
此處練習過程中出現的錯誤:在沒有第2個導入語句時,使用 tk.filedialog 後,提示錯誤,顯示
Cannot find reference ‘filedialog’ in 'init.py
我查瞭“Lib/tkinter/"文件夾,發現裡面並沒有 tkinter.py,但是有 filedialog.py
我想著:tkinter是庫,filedialog是模塊吧,
但為啥 tk.filedialog不能用?
反而,在有第2個導入語句時,用 tk.filedialog 和 filedialog 都可以
出錯情況 :
正常情況:
2.編寫按鈕命令
def select_file(): # 單個文件選擇 selected_file_path = filedialog.askopenfilename() # 使用askopenfilename函數選擇單個文件 select_path.set(selected_file_path) def select_files(): # 多個文件選擇 selected_files_path = filedialog.askopenfilenames() # askopenfilenames函數選擇多個文件 select_path.set('\n'.join(selected_files_path)) # 多個文件的路徑用換行符隔開 def select_folder(): # 文件夾選擇 selected_folder = filedialog.askdirectory() # 使用askdirectory函數選擇文件夾 select_path.set(selected_folder)
註意:三個按鈕命令中,變量select_path是主窗體中Entry控件的textvariable屬性值,在窗體初始化過程中,需要為其賦值:
select_path = StringVar()
3. 窗體初始化及佈局
root = tk.Tk() root.title("選擇文件或文件夾,得到路徑") # 初始化Entry控件的textvariable屬性值 select_path = tk.StringVar() # 佈局控件 tk.Label(root, text="文件路徑:").grid(column=0, row=0, rowspan=3) tk.Entry(root, textvariable = select_path).grid(column=1, row=0, rowspan=3) tk.Button(root, text="選擇單個文件", command=select_file).grid(row=0, column=2) tk.Button(root, text="選擇多個文件", command=select_files).grid(row=1, column=2) tk.Button(root, text="選擇文件夾", command=select_folder).grid(row=2, column=2) root.mainloop()
4.運行
選擇瞭單個文件的情況
到此這篇關於python使用tkinter模塊實現文件選擇功能的文章就介紹到這瞭,更多相關python實現選擇功能內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- python tkinter庫的Text記錄點擊路經和刪除記錄詳情
- Python Tkinter對話框控件使用詳解
- 一篇文章教你用Python實現一鍵文件重命名
- python tkinter Entry控件的焦點移動操作
- Python中的tkinter庫簡單案例詳解