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


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


ensureLinkSync()函数是ensureLink()的同步版本。该函数确保两个给定文件之间的链接存在。源文件必须已经存在,否则该函数将引发错误。如果目标文件的目录结构不存在,则该函数将创建该目录结构,并将在源文件和目标文件之间建立链接。也可以使用createLinkSync()代替ensureLinkSync()。

用法:

ensureLinkSync(srcPath, destPath)
// OR
createLinkSync(srcPath, destPath)

参数:

  • srcPath:它是一个字符串,其中包含要与另一个文件链接的文件的路径。
  • destPath:它是一个字符串,其中包含另一个文件的路径,该文件将链接到srcPath中指定的文件。

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

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

  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");
  
// source file path
// File needs to exist
const srcPath = "file.txt";
// destination file path
// This file exists already
const destPath = "dest/file.txt";
  
// Function to check
// if destination file
// exists or not
const fileExists = (path) => {
  if (fs.existsSync(path)) return "Destination file exists";
  return "Destination file do not exists";
};
  
// Before function call
const before = fileExists(destPath);
console.log(`Before function call ${before}`);
  
// Function Call
fs.ensureLinkSync(srcPath, destPath);
  
// After function call
const after = fileExists(destPath);
console.log(
  `After function call ${after} and Link is successfully established!!`
);

输出:

范例2:

Javascript


// Requiring module
const fs = require("fs-extra");
  
// source file path
// File needs to exist
const srcPath = "file.txt";
// destination file path
// This file do not exists
// so it will be created
// bt function
const destPath = "destination/dest/file.txt";
  
// Function to check
// if destination file
// exists or not
const fileExists = (path) => {
  if (fs.existsSync(path)) return "Destination file exists";
  return "Destination file do not exists";
};
  
// Before function call
const before = fileExists(destPath);
console.log(`Before function call ${before}`);
  
// Function Call
fs.ensureLinkSync(srcPath, destPath);
  
// After function call
const after = fileExists(destPath);
console.log(
  `After function call ${after} and Link is successfully established!!`
);

输出:

参考:https://github.com/jprichardson/node-fs-extra/blob/HEAD/docs/ensureLink-sync.md


相关用法


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