当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js fs-extra ensureFileSync()用法及代码示例


ensureFileSync()函数是ensureFile()函数的同步版本。该函数确保该文件存在,如果文件不存在,它将由该函数创建。如果请求的文件位于不存在的目录中,则目录和其中的文件将由函数本身创建。如果该文件已经存在,则不会被修改。也可以使用createFileSync()函数代替ensureFileSync()函数,其结果将相同。

用法:

fs.ensureFileSync(file)

或者

fs.createFileSync(file)

参数:

  • file:它是一个包含文件路径的字符串。

返回值:它不返回任何东西。



请按照以下步骤实现该函数:

  1. 可以使用以下命令安装该模块:
    npm install fs-extra
  2. 安装模块后,可以使用以下命令检查已安装模块的版本:

    npm ls fs-extra

  3. 使用以下命令创建一个名为index.js的文件,并在文件中需要fs-extra模块:

    const fs = require('fs-extra');
  4. 要运行文件,请在终端中输入以下命令:

    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

相关用法


注:本文由纯净天空筛选整理自pritishnagpal大神的英文原创作品 NodeJS fs-extra ensureFileSync() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。