“Python Tkinter FilediaLog” Kod odpowiedzi

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","*.*")))
RyanGar46

Python Tkinter Folder

from tkinter import filedialog

								# Where it open to.					# What the window is called.
folder = filedialog.askdirectory(initialdir=os.path.normpath("C://"), title="Example")
RyanGar46

Tkinter SilediaLog

from tkinter import filedialog
 
filedialog.asksaveasfilename()
filedialog.asksaveasfile()
filedialog.askopenfilename()
filedialog.askopenfile()
filedialog.askdirectory()
filedialog.askopenfilenames()
filedialog.askopenfiles()
Jerome Scott

nazwa pliku Filedialogeialog

def open_file():
    file = askopenfile(mode='r', filetypes=[
                       ('Text files', '*.txt'), ('CSV Files', '*.csv')])
    if file is not None:
        print(file.name.split("/")[-1]) # this will print the file name

btn = Button(root, text='Open', command=lambda: open_file())
btn.pack(side=TOP, pady=10)
stormerthe2nd

Odpowiedzi podobne do “Python Tkinter FilediaLog”

Pytania podobne do “Python Tkinter FilediaLog”

Więcej pokrewnych odpowiedzi na “Python Tkinter FilediaLog” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu