fs-extra 中的 ensureFile() 函数 - NodeJS

异步简介 ensureFile()

此方法用于确保文件存在于给定位置。如果确保创建的文件不存在或相应的目录不存在,则创建这些目录和文件。如果文件已存在,则不会对其进行修改或不进行任何更改。

语法

ensureFile(file, [, callback])

参数

  • file – 字符串参数,其中包含需要确保的文件名及其位置。

  • callback - 如果发生任何错误,此函数将提供回调。

示例 1

  • 在继续之前检查 fs-extra 是否已安装;如果没有,请安装 fs-exra。

  • 您可以使用以下命令来检查是否安装了 fs-extra。

npm ls fs-extra

  • 创建一个ensureFile.js并将以下代码片段复制粘贴到该文件中。

  • 现在,运行以下命令来运行以下代码片段。

node asyncEnsureFile.js

代码片段

const fs = require('fs-extra')

const file = '/tmp/node/file.txt'

// 使用回调确保文件:
fs.ensureFile(file, err => {
   // 如果成功,错误将为空
   console.log(err) // => null/undefined
   // 文件正在创建
})

// 使用 Promise 确保文件:
fs.ensureFile(file)
.then(() => {
   console.log('Async Success with Promises!')
})
.catch(err => {
   console.error(err)
})

// 使用 async/await 确保文件:
async function ensureFileExample (f) {
   try {
      await fs.ensureFile(f)
      console.log('Await Success!')
   } catch (err) {
      console.error(err)
   }
}
ensureFileExample(file)
输出结果
C:\Users\nhooo\> node asyncEmptyDir.js
undefined
Async Success with Promises!
Await Success!