Open
Description
How can I open a file selection window as electron with showOpenDialog
, that is, a dialog window appears that gives the user the opportunity to select a file.
With electron, I used showOpenDialog
and then received the path of the selected file and with fs
I loaded it.
Is there an API or an alternative to upload a local file?
If possible, other than <input type="file">
.