tkinter 获取文件路径
时间: 2023-12-03 22:39:09 浏览: 141
文件快传(使用tkinter+flask+requests+threading)此文件为使用这些模块的实例程序(加注释)
5星 · 资源好评率100%
以下是使用tkinter获取文件路径的示例代码:
```python
import tkinter as tk
from tkinter import filedialog
def select_file():
# 选择文件
select_file_name = filedialog.askopenfilename(title='选择文件')
entry.set(select_file_name)
# 创建窗口
window = tk.Tk()
# 创建一个文本框用于显示文件路径
entry = tk.StringVar()
entry.set("点击按钮选择文件")
entry_box = tk.Entry(window, textvariable=entry, width=50)
entry_box.pack()
# 创建一个按钮用于选择文件
button = tk.Button(window, text="选择文件", command=select_file)
button.pack()
# 运行窗口
window.mainloop()
```
阅读全文