-2

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?

tsuresh97
  • 496
  • 5
  • 12

1 Answers1

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