Die Suche ergab 1 Treffer

von stepfe
Freitag 2. August 2019, 10:40
Forum: Allgemeine Fragen
Thema: tkinter filedialog, Dialog erscheint nicht
Antworten: 4
Zugriffe: 888

tkinter filedialog, Dialog erscheint nicht

Hallo, bin python Neuling und habe folgendes Problem:

Folgender code öffnet einen Dialog um einen Pfad auszuwählen

from tkinter import filedialog
from tkinter import *

root = Tk()
root.withdraw() #Since I only need the filedialog and not a blank window at the back
source_folder = filedialog ...