electron打开目录文件夹使用到了shell命令
官方文档地址
shell.showItemInFolder('目录地址')
openPath() {
var that = this;
if (!that.downForm.dir) {
that.$message.error('目录不存在');
return
}
const {shell} = require("electron");
shell.showItemInFolder(getFilePath(that.downForm.dir));
},