📜  Node.js fs.linksync() 方法

📅  最后修改于: 2022-05-13 01:56:22.016000             🧑  作者: Mango

Node.js fs.linksync() 方法

fs.linkSync() 方法用于同步创建到指定路径的硬链接。即使文件被重命名,创建的硬链接仍将指向同一个文件。硬链接还具有链接文件的实际文件内容。

句法:

fs.linkSync( existingPath, newPath )

参数:此方法接受上面提到的两个参数,如下所述:

  • existingPath:它是一个字符串、缓冲区或 URL,表示必须创建符号链接的文件。
  • newPath:它是一个字符串、缓冲区或 URL,表示将在其中创建符号链接的文件路径。

下面的示例说明了 Node.js 中的fs.linkSync() 方法

示例 1:此示例创建到文件的硬链接。

// Node.js program to demonstrate the
// fs.linkSync() method
  
// Import the filesystem module
const fs = require('fs');
  
console.log("Contents of the text file:");
console.log(fs.readFileSync('example_file.txt', 'utf8'));
  
fs.linkSync(__dirname + "\\example_file.txt", "hardlinkToFile", 'file');
  
console.log("\nHard link created\n");
console.log("Contents of the hard link created:");
console.log(fs.readFileSync('hardlinkToFile', 'utf8'));

输出:

Contents of the text file:
Hello GeeksForGeeks

Hard link created

Contents of the hard link created:
Hello GeeksForGeeks

示例 2:此示例创建指向文件的硬链接并删除原始文件。仍然可以通过硬链接访问原始文件的内容。

// Node.js program to demonstrate the
// fs.linkSync() method
  
// Import the filesystem module
const fs = require('fs');
  
console.log("Contents of the text file:");
console.log(fs.readFileSync('example_file.txt', 'utf8'));
  
fs.linkSync(__dirname + "\\example_file.txt", "hardlinkToFile", 'file');
  
console.log("\nHard link created\n");
console.log("Contents of the hard link created:");
console.log(fs.readFileSync('hardlinkToFile', 'utf8'));
  
console.log("\nDeleting the original file");
fs.unlinkSync("example_file.txt");
  
console.log("\nContents of the hard link created:");
console.log(fs.readFileSync('hardlinkToFile', 'utf8'));

输出:

Contents of the text file:
Hello GeeksForGeeks

Hard link created

Contents of the hard link created:
Hello GeeksForGeeks

Deleting the original file

Contents of the hard link created:
Hello GeeksForGeeks

参考: https://nodejs.org/api/fs.html#fs_fs_linksync_existingpath_newpath