tk file select

This commit is contained in:
Alexander Popov 2023-06-05 21:52:39 +03:00
parent 056dab1fa5
commit 4da03f099c
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6
1 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,42 @@
---
title: "🗂️ Диалог выбора директории/файлов в Tk на Python"
date: 2023-06-05T21:47:33+03:00
draft: false
tags: [tk, python, tips]
---
## 📄 Выбор файла
```python
from tkinter import filedialog
from tkinter import *
root = Tk()
root.withdraw()
file_selected = filedialog.askopenfilename(
title='Open a file',
initialdir='/',
filetypes=(
('Text files', '*.txt'),
('All files', '*.*')
)
)
print(file_selected)
```
## 📁 Выбор директории
```python
from tkinter import filedialog
from tkinter import *
root = Tk()
root.withdraw()
folder_selected = filedialog.askdirectory()
print(folder_selected)
```