想通过代码实现 先复制选中文件到剪贴板 然后执行一个软件的指令 从剪贴板获取图片进行悬浮
但是现在遇到一个问题,就是如果两次执行之间的时间间隔小于10秒左右,就会悬浮上一张复制的图片
请问各位大佬能否帮忙看一下问题出在哪里,能否给出一点修改意见,感谢
const { exec } = require('child_process');
window.exports = {
"Pixpin": {
mode: "none",
args: {
enter: (action) => {
const paths = action.payload.map(item => item.path);
utools.copyFile(paths);
exec('cd /d D:\Software Installation\PixPin\PixPin && PixPin.exe -r "pixpin.pinFromCilpBoard()"');
}
}
}
};