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


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


fs.symlink() 方法用於創建指向指定路徑的符號鏈接。這將創建一個鏈接path指向target.相對目標相對於鏈接的父目錄。

用法:

fs.symlink( target, path, type, callback )

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

  • target:它是一個字符串、緩衝區或 URL,表示必須創建符號鏈接的路徑。
  • path:它是一個字符串、緩衝區或 URL,表示將創建符號鏈接的路徑。
  • type:它是一個字符串,代表要創建的符號鏈接的類型。可以用‘file’,‘dir’或‘junction’來指定。如果目標不存在,將使用‘file’。
  • callback:執行該方法時將調用該函數。
    • err:如果操作失敗,將拋出此錯誤。

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

範例1:此示例創建指向文件的符號鏈接。


// Node.js program to demonstrate the
// fs.symlink() 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.symlink(__dirname + "\\example_file.txt",
        "symlinkToFile", 'file', (err) => {
  if (err)
    console.log(err);
  else {
    console.log("\nSymlink created\n");
    console.log("Contents of the symlink created:");
    console.log(fs.readFileSync('symlinkToFile', 'utf8'));
  }
})

輸出:

Contents of the text file:
Hello Geeks

Symlink created

Contents of the symlink created:
Hello Geeks

範例2:此示例創建指向目錄的符號鏈接。


// Node.js program to demonstrate the
// fs.symlink() method
  
// Import the filesystem module
const fs = require('fs');
  
fs.symlink(__dirname + "\\example_directory",
           "symlinkToDir", 'dir', (err) => {
  if (err)
    console.log(err);
  else {
    console.log("Symlink created");
    console.log("Symlink is a directory:",
       fs.statSync("symlinkToDir").isDirectory()
    );
  }
});

輸出:

Symlink created
Symlink is a directory:true

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


相關用法


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