master
鲁誉程 9 months ago
parent 7b89dc412f
commit 56af8ed656

@ -58,26 +58,25 @@ app.post('/createShortcut', (req, res) => {
return res.status(400).send('少了参数!');
}
if (!fs.existsSync(folderPath)) {
fs.mkdirSync(folderPath, {
recursive: true
});
}
// if (!fs.existsSync(folderPath)) {
// fs.mkdirSync(folderPath, {
// recursive: true
// });
// }
const shortcutLinkPath = path.join(folderPath, shortcutName);
if (fs.existsSync(shortcutLinkPath)) {
fs.unlinkSync(shortcutLinkPath);
}
// if (fs.existsSync(shortcutLinkPath)) {
// fs.unlinkSync(shortcutLinkPath);
// }
fs.symlink(shortcutURL, shortcutLinkPath, 'file', (err) => {
if (err) {
console.error(err);
res.status(500).send('安装失败!');
} else {
res.status(200).send('安装成功!');
}
});
try {
fs.symlinkSync(shortcutURL, shortcutLinkPath, 'file');
res.status(200).send('安装成功!');
} catch (err) {
console.error(err);
res.status(500).send('安装失败!');
}
// // 快捷方式的配置
// const config = {

Loading…
Cancel
Save