Nội dung text 03. sử dụng shell của Electron.docx
Sử dụng shell trong Electron để mở thư mục, đọc tập tin ảnh, và đọc URL của một trang web và hiển thị Khi người dùng bấm nút Open thì Shell sẽ thực hiện các công việc gồm ● Mở thư mục trên đĩa shell.showItemInFolder('./test') ● Đọc tập tin ảnh shell.openPath('LenovoWallPaper.jpg') ● Load URL website shell.openExternal('http://mrteacherlong.wordpress.com') Main Process như sau const electron = require("electron"); const app = electron.app; const BrowserWindow = electron.BrowserWindow; const path = require('path') const url = require('url') let win; function createWindow() { win = new BrowserWindow({ ... }) win.loadURL(...); win.on('closed', () => { win = null });