Electron-builder“The process cannot access the file because it is being used by another process.”((代

Posted 五更

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Electron-builder“The process cannot access the file because it is being used by another process.”((代相关的知识,希望对你有一定的参考价值。

在用 electron-builder 打包时,时常会出现 “The process cannot access the file because it is being used by another process.” 这个报错,字面意思是因另外一个进程在使用文件,所以现在不能操作此文件。报错如图:

由于这个报错是偶尔发生的,排除了很久才解决,故做下笔记。

网上的方法

vscode "设置" 里排除掉 "win-unpacked" 文件夹的监测

{
  "files.watcherExclude": {
    "**/build/win-unpacked/**": true
  }
}

理由是 vscode 会检测项目文件的变化,然而按照此方法设置了依旧还是会报错。所以根本原因不在此。。

解决

不要启用 “live server” 插件!

因为项目要做自动更新,图个方便,开启了 “live server” 服务,由于此插件就像一个服务器,已开启就会检测项目的根目录,开启后,即使再关闭,其检测文件的进程依旧存在,这是就需要重启 vscode 了。

以上是关于Electron-builder“The process cannot access the file because it is being used by another process.”((代的主要内容,如果未能解决你的问题,请参考以下文章

electron-builder,如何设置节点环境变量

Electron 和 TypeScript (electron-builder):“不能在模块外使用 import 语句”

配置 electron-builder 运行 powershell 脚本

Electron-Builder 包含外部文件夹

如何从 Electron-builder NSIS 获取选定的语言

使用electron-builder来打包