當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js fs.link()用法及代碼示例


fs.link()方法用於創建到給定路徑的硬鏈接。即使重命名文件,創建的硬鏈接仍將指向同一文件。硬鏈接還包含鏈接文件的實際內容。

用法:

fs.link( existingPath, newPath, callback )

參數:此方法接受上述和以下所述的三個參數:



  • existingPath:它是一個字符串,緩衝區或URL,代表必須將符號鏈接創建到的文件。
  • newPath:它是一個字符串,緩衝區或URL,代表將在其中創建符號鏈接的文件路徑。
  • callback:該方法執行時將調用該函數。
    • err:如果方法失敗,將拋出此錯誤。

以下示例說明了Node.js中的fs.link()方法:

範例1:本示例創建到文件的硬鏈接。

// Node.js program to demonstrate the 
// fs.link() 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.link(__dirname + "\\example_file.txt", "hardlinkToFile", (err) => { 
  if (err) console.log(err) 
  else { 
    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:
This is an example of the fs.link() method.

Hard link created

Contents of the hard created:
This is an example of the fs.link() method.

範例2:本示例創建到文件的硬鏈接並刪除原始文件。仍然可以通過硬鏈接訪問原始文件的內容。

// Node.js program to demonstrate the 
// fs.link() 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.link(__dirname + "\\example_file.txt", "hardlinkToFile", (err) => { 
  if (err) console.log(err) 
  else { 
    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:
This is an example of the fs.link() method.

Hard link created

Contents of the hard link created:
This is an example of the fs.link() method.

Deleting the original file

Contents of the hard link created:
This is an example of the fs.link() method.

參考: https://nodejs.org/api/fs.html#fs_fs_link_existingpath_newpath_callback




相關用法


注:本文由純淨天空篩選整理自sayantanm19大神的英文原創作品 Node.js | fs.link() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。