picture1:

picture2:

I can't add local Electron bulid in Electron setting. As you see in picture1 and picture 2 .The F:\Program-Files\Electron have included electron.exe, but The picture 1 show that We did not find a electron.exe in this folder.... How can I solve this Problem?
I get the same error when trying to import a folder. It seems like selecting a folder with the File Input selects some arbitrary file in the folder (in your case chrome_100_percent.pak) rather than the folder itself.
I just tested, and this feature works in Fiddle 0.10.0, but seems like it broke on the latest release.
Thanks for the report, I'll investigate today!
Update 1: Seems like on master, git checkout v0.10.0 -- package.json did the trick. I'll try to it narrow down to a specific package.
Update 2: It seems like the Electron 7 upgrade had a breaking change that affected this feature. The webkitdirectory property on File inputs used to return the directory name, but now returns an array with the list of files in the directory.
This PR in particular seems to be the culprit:
https://github.com/electron/electron/pull/18343
I'll try to add a PR in today! For now, sticking to Electron Fiddle v0.10.0 should be a safe bet to adding local versions. Thanks again for the report, @LOVELIBERTY1314.
This PR in particular seems to be the culprit:
electron/electron#18343I'll try to add a PR in today! For now, sticking to Electron Fiddle v0.10.0 should be a safe bet to adding local versions. Thanks again for the report, @LOVELIBERTY1314.
Thank you for your help.