Compare commits

..

No commits in common. "4da03f099c3817cc950744225c67f4d1d330aadb" and "408c6e53a51a822168c891ddd3929fb590bc7857" have entirely different histories.

2 changed files with 1 additions and 43 deletions

View File

@ -1,7 +1,7 @@
---
title: "📼 Смотри аниме во время кодинга | mpv по верх всех окон"
date: 2023-06-05T21:25:54+03:00
draft: false
draft: true
tags: [video, tools, tips]
---

View File

@ -1,42 +0,0 @@
---
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)
```