How to select file OR folder in file dialog
问题 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"/> it will open up the file dialog but won't allow me to select a folder. But when I try <input type="file" webkitdirectory/> 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 button, but a way to launch the native system file explorer for both possibilities.