标签: electron
我正在开发电子应用程序,我必须在用户的记事本中显示许可证文件。是否可以使用电子向用户显示*.txt文件?
*.txt
答案 0 :(得分:0)
HTML:
<button onclick="open_txt()">Show file</button>
JS:
var app = require('electron').remote; function open_txt(){ app.shell.openExternal('yourfile.txt'); }