fs.existsSync is not a function

来源:4-2 创建添加音乐窗口

枫枫枫枫枫枫

2020-09-27 13:08

Uncaught TypeError: fs.existsSync is not a function

    at getElectronPath (webpack-internal:///./node_modules/electron/index.js:7)


写回答 关注

1回答

  • 慕虎557368
    2021-02-21 22:52:22

    1. 请确定你正确导入了fs:const fs = require("fs")

    2. 如果导入了,command+单击,看源码的实现


    我这里测试是正常的

    代码

    ```

    const appDataPath = app.getPath("userData")

    const exist = fs.existsSync(appDataPath)

    console.log("----------")

    console.log(exist)

    ```

    输出

    ```

    [nodemon] starting `electron .`

    ----------

    true

    ```

Electron开发本地音乐播放器

跨平台开发框架Electron,一次编写多个系统使用

4410 学习 · 53 问题

查看课程

相似问题