File chooser GUI?

Forgive me if I have asked this question already. I commonly work in the REPL and like to test new packages to read various data formats - today DICOM format, as I used to work in medial imaging.
You have to form a filename of a sample file to open. I know this is part of the workflow, but I find it a pain when simply wanting to test something.
Is there a file chooser GUI in Julia which I could use to return a filename and path?

I know I could run an external program if there are suggestions. For information, I use Windows and Fedora dual boot.

I am not aware of a package that does this cross-platform, but on Linux you can do eg

zenity --file-selection

Gtk.jl does:
https://juliagraphics.github.io/Gtk.jl/latest/manual/filedialogs.html

2 Likes