-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
50 lines (41 loc) · 1.11 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const { app, BrowserWindow, ipcMain, Notification } = require("electron");
const { getRandomEmoji } = require('./utilities/emoji.js');
const fs = require("fs");
const path = require("path");
const showNotification = (title, body) => {
new Notification({ title, body }).show();
};
const handleDelete = (dir) => {
fs.readdir(dir, (err, files) => {
if (err) throw err;
let deletedFilesCount = 0;
for (const file of files) {
if (file.endsWith(".asd")) {
fs.unlink(path.join(dir, file), (err) => {
if (err) throw err;
});
deletedFilesCount++;
}
}
showNotification(`${getRandomEmoji()} Success`, `${deletedFilesCount} .asd files were deleted`);
});
};
const createWindow = () => {
const win = new BrowserWindow({
width: 600,
height: 400,
webPreferences: {
preload: path.join(__dirname, "preload.js"),
},
});
win.loadFile("index.html");
if (!app.isPackaged) {
win.webContents.openDevTools();
}
};
app.whenReady().then(() => {
createWindow();
ipcMain.on("file-drop", (_event, path) => {
handleDelete(path);
});
});