首页 > 代码库 > Eletron 打开文件夹,截图
Eletron 打开文件夹,截图
1、shell.openItem(fullPath)
var fullpath = path.join(processPath)+Math.random()+".png";
shell.showItemInFolder(fullPath) //如果fullPath 是一个文件夹则打开,如果是一个文件,则打开其所在文件夹
https://electron.atom.io/docs/api/shell/
2\截图:
https://github.com/electron/electron/issues/8587
function takePicture(imagePath){ var imagePath = imgFile || path.join(processPath)+Math.random()+".png"; remote.getCurrentWebContents().capturePage({ x: 0, y: 40, width: 0, //保持原样,必须写 height: 0 //保持原样。必须写 这4个参数 },function(img){ remote.require(‘fs‘).writeFile(imagePaht,img.toPng()); shell.showItemInFolder(imagePath); }); }
Eletron 打开文件夹,截图
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。