Node.js fs.symlinkSync() 方法
fs.symlinkSync() 方法用于同步创建指向指定路径的符号链接。此方法创建一个链接,使path
指向target
。相对目标相对于链接的父目录。
句法:
fs.symlinkSync( target, path, type )
参数:此方法接受三个参数,如上所述,如下所述:
- 目标:它是一个字符串、缓冲区或 URL,表示必须创建符号链接的路径。
- path:它是一个字符串、缓冲区或 URL,表示将创建符号链接的路径。
- type:它是一个字符串,表示要创建的符号链接的类型。它可以用'file'、'dir'或'junction'指定。如果目标不存在,将使用“文件”。
下面的示例说明了 Node.js 中的fs.symlinkSync() 方法:
示例 1:此示例创建文件的符号链接。
// Node.js program to demonstrate the
// fs.symlinkSync() 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.symlinkSync(__dirname + "\\example_file.txt",
"symlinkToFile", 'file');
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.symlinkSync() method
// Import the filesystem module
const fs = require('fs');
fs.symlinkSync(__dirname + "\\example_directory",
"symlinkToDir", 'dir');
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_symlinksync_target_path_type