tkinter filedialog documentation code example
Example 1: python tkinter filedialog
from tkinter import filedialog
# Where it open to. # What the window is called. # What file types the user can choose between. first one is the defualt. (("what ever", "*.format"), ("what ever 2", "*.format2"))
filedialog.askopenfilename(initialdir=os.path.normpath("C://"), title="Example", filetypes =(("PNG", "*.png"),("JPG", "*.jpg"),("All Files","*.*")))
Example 2: python tkinter filedialog folder
from tkinter import filedialog
# Where it open to. # What the window is called.
folder = filedialog.askdirectory(initialdir=os.path.normpath("C://"), title="Example")