I Can't able install filedialog package in python3 it shows already requirement satisfied. The package is installed but not working. Can anyone help me to solve?
Asked
Active
Viewed 1,344 times
1 Answers
1
You can use Tkinter's askopenfilenames. This is very similar to FileDialog, but with the Tkinter module.
import tkinter
from tkinter import askopenfilenames
root = tkinter.Tk().withdraw()
files = askopenfilenames() #This is the FileDialog window

SanguineL
- 1,189
- 1
- 7
- 18