ensureDirSync()函数是ensureDir()函数的同步版本。该函数确保该目录存在,如果目录结构不存在,它将由该函数创建。也可以使用mkdirsSync()和mkdirpSync()代替ensureDirSync(),结果将相同。
用法:
ensureDirSync(dir,options) // OR mkdirsSync(dir,options) // OR mkdirpSync(dir,options)
参数:
- dir:它是一个包含目录路径的字符串。
- options:它是用于指定可选参数的对象或整数。
- Integer:如果是整数,则为mode。
- Object:如果是对象,则为{mode:integer}。
返回值:它不返回任何东西。
请按照以下步骤实现该函数:
- 可以使用以下命令安装该模块。
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");
// Function to check
// if directory exists
// or not
const dirExists = (dir) => {
if (fs.existsSync(dir)) {
return "Directory exists";
} else {
return "Directory do not exist";
}
};
// This directory
// already exists so
// function will not
// do anything
const dir = "dir";
// Checking before
// calling function
const before = dirExists(dir);
console.log(`Before function call ${before}`);
// Function call
fs.ensureDirSync(dir);
// Checking after
// calling function
const after = dirExists(dir);
console.log(`After function call ${after}`);
输出:
范例2:
index.js
// Requiring module
const fs = require("fs-extra");
// Function to check
// if directory exists
// or not
const dirExists = (dir) => {
if (fs.existsSync(dir)) {
return "Directory exists";
} else {
return "Directory do not exist";
}
};
// This directory
// do not exists so
// function will create
// the directory
const dir = "direc/dir";
const mode = 0o2775;
// Checking before
// calling function
const before = dirExists(dir);
console.log(`Before function call ${before}`);
// Function call
fs.ensureDirSync(dir, mode);
// Checking after
// calling function
const after = dirExists(dir);
console.log(`After function call ${after}`);
输出:
参考:https://github.com/jprichardson/node-fs-extra/blob/HEAD/docs/ensureDir-sync.md
相关用法
- 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 ensureDirSync() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。