📜  Node.js fs.linksync() 方法(1)

📅  最后修改于: 2023-12-03 15:03:12.815000             🧑  作者: Mango

Node.js fs.linksync() 方法

Node.js中,fs.linksync()方法用于生成一个硬链接。

语法
fs.linksync(existingPath, newPath)
参数
  • existingPath | :已经存在的文件路径。
  • newPath | :要创建的硬链接的路径。
返回值

undefined

示例
const fs = require('fs');

fs.linkSync('/path/to/existing/file', '/path/to/new/link');

上述代码将创建一个硬链接,以使/path/to/new/link文件指向/path/to/existing/file。 硬链接可以在文件系统中,拥有不同的路径,但是内容相同。

注意事项
  • 如果newPath已经存在,则会抛出EEXIST异常。
  • 硬链接不能跨文件系统。
参考链接