ensureFileSync()函数是ensureFile()函数的同步版本。该函数确保该文件存在,如果文件不存在,它将由该函数创建。如果请求的文件位于不存在的目录中,则目录和其中的文件将由函数本身创建。如果该文件已经存在,则不会被修改。也可以使用createFileSync()函数代替ensureFileSync()函数,其结果将相同。
用法:
fs.ensureFileSync(file)
或者
fs.createFileSync(file)
参数:
- file:它是一个包含文件路径的字符串。
返回值:它不返回任何东西。
请按照以下步骤实现该函数:
- 可以使用以下命令安装该模块:
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 file exists
// or not
const fileExists = (file) => {
if (fs.existsSync(file)) {
return "File exists";
} else {
return "File do not exist";
}
};
// This file already
// exist so function
// will not do anything
const file = "file.txt";
// Checking before
// calling function
const before = fileExists(file);
console.log(`Before function call ${before}`);
// Function call
fs.ensureFileSync(file);
// Checking after calling function
const after = fileExists(file);
console.log(`After function call ${after}`);
输出:
范例2:
index.js
// Requiring module
const fs = require("fs-extra");
// Function to check
// if file exists
// or not
const fileExists = (file) => {
if (fs.existsSync(file)) {
return "File exists";
} else {
return "File do not exist";
}
};
// This file and directory
// do not exist so both
// will be created
const file = "dir/file.txt";
// Checking before
// calling function
const before = fileExists(file);
console.log(`Before function call ${before}`);
// Function call
fs.ensureFileSync(file);
// Checking after calling function
const after = fileExists(file);
console.log(`After function call ${after}`);
输出:
参考:https://github.com/jprichardson/node-fs-extra/blob/HEAD/docs/ensureFile-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 ensureFileSync() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。