“OpenFileDialog Python” Ответ

Как открыть диалоговое окно, чтобы выбрать папку в Python

>>> from tkinter import Tk, filedialog
>>>
>>> root = Tk() # pointing root to Tk() to use it as Tk() in program.
>>> root.withdraw() # Hides small tkinter window.
''
>>> root.attributes('-topmost', True) # Opened windows will be active. above all windows despite of selection.
''
>>> open_file = filedialog.askdirectory() # Returns opened path as str
>>> print(open_file) 
C:/Users/User/Music
>>> 
Action Kamen

OpenFileDialog Python

import tkinter as tk
from tkinter import filedialog

root = tk.Tk()
root.withdraw()

file_path = filedialog.askopenfilename()
S3NS4

Ответы похожие на “OpenFileDialog Python”

Вопросы похожие на “OpenFileDialog Python”

Больше похожих ответов на “OpenFileDialog Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования