Electron - 如何添加外部文件?

Electron - How to add external files?(Electron - 如何添加外部文件?)
本文介绍了Electron - 如何添加外部文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有一个 Electron 应用程序.我尝试让应用程序打开一个 .exe 文件.我在名为 lib 的根文件夹中创建了一个目录,并将 .exe 文件放在那里.在开发中,我使用 __dirname + '/lib/file.exe 打开文件没有问题,但是当我打包应用程序时(使用 yarn dist),它确实不打开exe文件,dist文件夹下也没有lib文件夹了.

I have an Electron app. I try to make the app open an .exe file. I created a directory in the root folder named lib and placed the .exe file there. In development, I have no problem opening the file by using __dirname + '/lib/file.exe, but when I package the app (using yarn dist), it does not open the exe file and there is no lib folder anymore on the dist folder.

我尝试使用 console.log(__dirname) 写入控制台默认位置,它输出 distwin-unpacked esourcesapp.asa (即一个文件).

I tried writing to console the default location using console.log(__dirname) and it outputs distwin-unpacked esourcesapp.asa (which is a file).

如何添加应用打包时可以访问的外部文件?

How can I add an external file that can be accessed when the app is packaged?

推荐答案

设法通过使用 extraResources 来解决它.应该在 package.json 文件中的 build 下声明.

Managed to solve it by using extraResources. Should be declared under build in your package.json file.

例如:

  1. 在 pacakge.json 旁边创建一个名为 extraResources 的新文件夹
  2. 将以下代码添加到您的 package.json 文件中:

<代码>构建":{"extraResources": ["./extraResources/**"]}

这篇关于Electron - 如何添加外部文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Google apps script get range of bytes from binary file(谷歌应用程序脚本从二进制文件中获取字节范围)
Sending Multiple attachments with Google Script from Google Drive(使用 Google 脚本从 Google Drive 发送多个附件)
Distributing Google Apps Scripts for Sheets in your company network(在您的公司网络中分发适用于表格的 Google Apps 脚本)
Upload file to my google drive from anyone using javascript(使用 javascript 将文件从任何人上传到我的谷歌驱动器)
quot;Shared Drivequot; support in Google Apps Script(“共享驱动器Google Apps 脚本中的支持)
Angular 2+ HTTP POST and GDrive API. Resumable file upload with name(Angular 2+ HTTP POST 和 GDrive API.带名称的可恢复文件上传)