Dragging files into web pages is common and widely supported by many websites.
Set up Drag-and-Drop Area
This is an example:
1 | function App() { |
For security reasons, path
is not included in the file information for the selected files. Fortunately, Electron provides the webUtils.getPathForFile()
function which can return the file absolute path.
Expose IPC Functions with Preload script
To make window.electron.getSelectedFilePaths
function available in renderer script, it must be exposed in preload script:
1 | import { webUtils, contextBridge, ipcRenderer } from "electron"; |
In the code above, webUtils.getPathForFile
is called in the exposed getSelectedFilePaths
function, then return the result to the renderer script.