Skip to content

Instantly share code, notes, and snippets.

@Basemera
Created October 12, 2022 15:01
Show Gist options
  • Save Basemera/5969e52f0c38939f260a380fdeb4b4e9 to your computer and use it in GitHub Desktop.
Save Basemera/5969e52f0c38939f260a380fdeb4b4e9 to your computer and use it in GitHub Desktop.
from tkinter import filedialog as fd
def open_file_selection():
files = fd.askopenfiles()
for file in files:
print(files)
open_file_selection()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment