В обычном блокноте путь к файлу не показывается в основном окне.
from tkinter import *
from tkinter import filedialog as fd
filename = ""
def click_button():
filetypes = (
('text files', '*.txt'),
('All files', '*.*')
)
filename = fd.askopenfilename(
title='Open a file',
initialdir='/',
filetypes=filetypes)
entry.delete(0,END)
entry.insert(0,filename)
def click_button_2():
file_path = entry.get()
myfile = open(file_path, 'r')
content = myfile.read()
text_editor.delete(1.0,END)
text_editor.insert(END, content)
root = Tk()
root.title("Open text")
root.geometry("500x500")
entry = Entry()
entry.place(x=0,y=50,width=250)
text_editor = Text(height=10, wrap="word")
text_editor.place(x=0,y=100)
btn = Button(text="Установить путь", command=click_button)
btn.place(x=0,y=0)
btn2 = Button(text="Загрузить текст", command=click_button_2)
btn2.place(x=100,y=0)
root.mainloop()
|