Compare commits

..

No commits in common. '08ad59ffce666d87203774cdcc6e6707937ad443' and 'eb317219a791661ab00999ccf003e1aec02b0098' have entirely different histories.

@ -47,16 +47,17 @@ app.post('/createShortcut', (req, res) => {
Exec=/usr/bin/chromium-browser ${shortcutURL}
Icon=/usr/share/icons/hicolor/48x48/apps/chromium-browser.png`;
try {
fs.writeFileSync(shortcutFolderPath, shortcutFileContent);
// 设置文件权限为可执行 0o755 表示 rwxr-xr-x 权限,即所有者可读写执行,其他用户可读执行
fs.chmodSync(shortcutFolderPath, 0o755);
res.status(200).send('安装成功!');
} catch (err) {
fs.writeFileSync(shortcutFolderPath, shortcutFileContent, (err) => {
if (err) {
console.error(err);
res.status(500).send('安装失败!');
} else {
res.status(200).send('安装成功!');
}
});
// 设置文件权限为可执行
fs.chmodSync(shortcutFolderPath, 0o755); // 0o755 表示 rwxr-xr-x 权限,即所有者可读写执行,其他用户可读执行
});
// 运行项目 需要进入到当前的文件夹目录打开终端 执行 node nodeService.js

Loading…
Cancel
Save