📅  最后修改于: 2023-12-03 15:03:15.771000             🧑  作者: Mango
ensureFileSync()
是NodeJS fs-extra模块提供的方法之一,用于创建文件(如果文件不存在),如果文件已存在,则什么也不做。
fs.ensureFileSync(file[, options])
const fs = require('fs-extra');
// 创建文件 test.txt
fs.ensureFileSync('test.txt');
// 创建文件夹和文件 test/test.txt
fs.ensureFileSync('test/test.txt');
// 创建文件 test.txt,并指定编码和权限
fs.ensureFileSync('test.txt', { encoding: 'utf8', mode: 0o777 });
该函数没有返回值,只有两种可能的操作结果:成功创建文件或不做操作。