While working with GUI one may need to open files and read data from it or may require to write data in that particular file. One can achieve this with the help ofopen() function (python built-in) but one may not be able to select any required file unless provides a path to that particular file in code.
With the help of GUI, you may not require to specify the path of any file but you can directly open a file and read it's content.
In order to use askopenfile() function you may require to follow these steps:
->import tkinter->from tkinter.filedialog import askopenfile ## Now you can use this function->file = askopenfile(mode='r', filetypes=[('any name you want to display', 'extension of file type')])
We have to specify the mode in which you want to open the file like in above snippet, this will open a file in reading mode.
Python3# importing tkinter and tkinter.ttk# and all their functions and classesfromtkinterimport*fromtkinter.ttkimport*# importing askopenfile function# from class filedialogfromtkinter.filedialogimportaskopenfileroot=Tk()root.geometry('200x100')# This function will be used to open# file in read mode and only Python files# will be openeddefopen_file():file=askopenfile(mode='r',filetypes=[('Python Files','*.py')])iffileisnotNone:content=file.read()print(content)btn=Button(root,text='Open',command=lambda:open_file())btn.pack(side=TOP,pady=10)mainloop()
Output:
Printed content of selected file -
Comparison of content of original file and printed content -
Note: In above code only .py (python files) types files will be open. To open specified type of files, one has to mention it in thefiletypes option along with it's extension as done in above code.