python使用tkinter库写出使用button按键选择文件,并将文件的绝对路径显示在使用tkinter创建的文本框中
时间: 2023-11-22 15:52:17 浏览: 91
详解python tkinter包获取本地绝对路径(以获取图片并展示)
可以参考下面的代码实现:
```python
import tkinter as tk
from tkinter import filedialog
root = tk.Tk()
def select_file():
file_path = filedialog.askopenfilename()
text_box.delete(0, tk.END)
text_box.insert(tk.END, file_path)
select_button = tk.Button(root, text="Select File", command=select_file)
select_button.pack()
text_box = tk.Entry(root)
text_box.pack()
root.mainloop()
```
代码中使用 `filedialog` 模块来打开文件选择对话框,选择文件后将文件路径插入到 `text_box` 中。
阅读全文