fs.link(existingPath, newPath, callback)
existingPath<string> | <Buffer> | <URL>newPath<string> | <Buffer> | <URL>callback<Function>err<Error>
在 existingPath 和 newPath 之间创建一个新的链接。有关更多详细信息,请参阅 POSIX link(2) 文档。完成回调除了可能的异常之外,不会传递其他参数。
【Creates a new link from the existingPath to the newPath. See the POSIX
link(2) documentation for more detail. No arguments other than a possible
exception are given to the completion callback.】