How would someone open up a file dialog in Node.js / electron to be able to select either a folder or a file.
When I use
<input type="file"/>
Run Code Online (Sandbox Code Playgroud)
it will open up the file dialog but won't allow me to select a folder. But when I try
<input type="file" webkitdirectory/>
Run Code Online (Sandbox Code Playgroud)
it will open up the dialog, but won't allow for folder selection.
What I want to do is just have one input button, or doesn't really have to be a …