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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。