pathExists()测试给定的文件路径是否存在。它在引擎盖下使用fs.access()。
用法:
fs.pathExists(file,callback)
参数:该函数接受上述和以下所述的两个参数:
- file:它是一个包含文件路径的字符串。
- callback:函数执行后将调用它。它将导致错误或称为存在的布尔值。我们也可以使用Promise代替回调函数。
返回值:它不返回任何东西。
请按照以下步骤实现该函数:
-
可以使用以下命令安装该模块:
npm install fs-extra
-
安装模块后,可以使用以下命令检查已安装模块的版本:
npm ls fs-extra
-
使用以下命令创建一个名为index.js的文件,并在文件中需要fs-extra模块:
const fs = require('fs-extra');
-
要运行文件,请在终端中输入以下命令:
node index.js
项目结构:项目结构如下所示:
范例1:
index.js
// Requiring module
const fs = require("fs-extra");
// This file already
// exists so function
// will return true
const file = "file.txt";
// Function call
// Using callback function
fs.pathExists(file, (err, exists) => {
if (err) return console.log(err);
console.log(exists);
});
输出:这将是控制台输出。
范例2:
index.js
// Requiring module
const fs = require("fs-extra");
// This file doesn't
// exists so function
// will return false
const file = "dir/file.txt";
// Function call
// Using Promises
fs.pathExists(file)
.then((exists) => console.log(exists))
.catch((e) => console.log(e));
输出:这将是控制台输出。
相关用法
- Node.js GM charcoal()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM sharpen()用法及代码示例
- Node.js GM drawLine()用法及代码示例
- Node.js GM drawArc()用法及代码示例
- Node.js GM drawPolyline()用法及代码示例
- Node.js GM drawBezier()用法及代码示例
- Node.js GM drawCircle()用法及代码示例
- Node.js GM drawEllipse()用法及代码示例
- Node.js GM drawPolygon()用法及代码示例
- Node.js GM drawRectangle()用法及代码示例
- Node.js GM paint()用法及代码示例
- Node.js GM orderedDither()用法及代码示例
- Node.js GM roll()用法及代码示例
- Node.js GM segment()用法及代码示例
- Node.js GM quality()用法及代码示例
- Node.js GM raise()用法及代码示例
- Node.js GM resize()用法及代码示例
- Node.js GM transparent()用法及代码示例
- Node.js GM thumbnail()用法及代码示例
- Node.js GM threshold()用法及代码示例
- Node.js GM whitePoint()用法及代码示例
- Node.js GM whiteThreshold()用法及代码示例
注:本文由纯净天空筛选整理自pritishnagpal大神的英文原创作品 NodeJS fs-extra pathExists() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。