VOOZH about

URL: https://www.geeksforgeeks.org/python/python-asksaveasfile-function-in-tkinter/

⇱ Python | asksaveasfile() function in Tkinter - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | asksaveasfile() function in Tkinter

Last Updated : 11 Jul, 2025
Python provides a variety of modules with the help of which one may develop GUI (Graphical User Interface) applications. Tkinter is one of the easiest and fastest way to develop GUI applications. While working with files one may need to open files, do operations on files and after that to save file. asksaveasfile() is the function which is used to save user's file (extension can be set explicitly or you can set default extensions also). This function comes under the class filedialog. Below is the Code: Output #1: Directory before saving any file (folder is initially empty) 👁 asksaveasfile() function in Tkinter
Output #2: Dialogbox when user presses the save button (dialog box to save file is opened). You may see in the output Python file as default is selected. 👁 Dialogbox when user presses the save button
Output #3: Directory after saving 2 Python files (one may also change the type of file) 👁 Directory after saving 2 Python files
Comment
Article Tags: