python使用tkinter模块实现文件选择功能
作者:非典型假猿
这篇文章主要介绍了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()
选择了单个文件的情况
到此这篇关于python使用tkinter模块实现文件选择功能的文章就介绍到这了,更多相关python实现选择功能内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
您可能感兴趣的文章:
python3.x zip用法小结
2022-11-11
python中的线程池threadpool
2022-11-11
使用Python中的pytesseract模块实现抓取图片中文字
2022-11-11
利用OpenCV判断是否加载图片的两种方法
2022-11-11
python字典如何获取最大和最小value对应的key
2022-11-11
Python urllib 入门使用详细教程
2022-11-11
Python实现敲击木鱼积累功德小项目
2022-11-11
一文学会如何将Python打包后的exe还原成.py
2022-11-11
美国设下计谋,用娘炮文化重塑日本,已影响至中国
2021-11-19
时空伴随者是什么意思?时空伴随者介绍
2021-11-09
工信部称网盘企业免费用户最低速率应满足基本下载需求,天翼云盘回应:坚决支持,始终
2021-11-05
2022年放假安排出炉:五一连休5天 2022年所有节日一览表
2021-10-26
电脑版
-
返回首页
2006-2023 脚本之家 JB51.Net , All Rights Reserved.
苏ICP备14036222号