VOOZH about

URL: https://www.geeksforgeeks.org/python/file-explorer-in-python-using-tkinter/

⇱ File Explorer in Python using Tkinter - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

File Explorer in Python using Tkinter

Last Updated : 12 Jul, 2025

Prerequisites: Introduction to Tkinter 


Python offers various modules to create graphics programs. Out of these Tkinter provides the fastest and easiest way to create GUI applications.
 

The following steps are involved in creating a tkinter application: 

  • Importing the Tkinter module. 
  • Creation of the main window (container). 
  • Addition of widgets to the main window 
  • Applying the event Trigger on widgets like buttons, etc. 
     

The GUI would look like below:

👁 Image

Creating the File Explorer


In order to do so, we have to import the filedialog module from Tkinter. The File dialog module will help you open, save files or directories.
In order to open a file explorer, we have to use the method, askopenfilename(). This function creates a file dialog object.
 

Syntax: tkFileDialog.askopenfilename(initialdir = "/",title = "Select file",filetypes = (("file_type","*.extension"),("all files","*.*")))
Parameters: 
 

  1. initialdir: We have to specify the path of the folder that is to be opened when the file explorer pops up.
  2. title: The title of file explorer opened.
  3. filetypes: Here we can specify different kinds of file extensions so that the user can filter based on different file types


Below is the implementation
 

Output:


 

👁 takinter-filedialog1


 

👁 takinter-filedialog1


 

👁 takinter-filedialog1


 

Comment