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


异步 pathExists() 简介

此方法通过检查文件系统来测试给定路径是否存在。如果路径不存在,它将在回调中抛出错误。

语法

pathExists(file[, callback])

参数

  • file – 这是需要在所有文件系统中检查的文件路径。

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

示例

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

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

npm ls fs-extra
  • 创建一个 **pathExists.js** 文件并将以下代码片段复制粘贴到该文件中。

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

node pathExists.js

代码片段

const fs = require('fs-extra')

const file = '/tmp/dest/file2.txt'

// Checking Path with a callback:
fs.pathExists(file, (err, exists) => {
   console.log(err) // => This will be null
   console.log(exists) // => True if file exists
})

// CHecking path with Promise:
fs.pathExists(file)
   .then(exists => console.log(exists)) // => True if file exists

// Checking path with async/await:
async function pathExistsExample (f) {
   const exists = await fs.pathExists(f)
   console.log(exists) // => True if file exists
}
pathExistsExample(file)

输出

C:\Users\tutorialsPoint\> node pathExists.js
null
true
true
true

ensureSymlinkSync() 简介

此方法还确保符号链接存在。如果目录结构不存在,它将创建目录结构。

语法

pathExistsSync(file)

参数

  • file – 这是需要在所有文件系统中检查的文件路径。

示例

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

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

npm ls fs-extra
  • 创建一个 pathExistsSyncExample.js 文件并将以下代码片段复制粘贴到该文件中。

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

node pathExistsSyncExample.js

代码片段

const fs = require('fs-extra')

const file = '/tmp/dest2/file.txt'
const exists = fs.pathExistsSync(file)
console.log(exists)

输出

C:\Users\tutorialsPoint\> node createSymlinkSyncExample.js
true

更新于:2021年4月28日

浏览量:298

启动您的 职业生涯

完成课程获得认证

开始学习
广告