方法說明:
建立硬連結。
文法:
fs.link(srcpath, dstpath, [callback(err)])
由於方法屬於fs模組,使用前需要引入fs模組(var fs= require(“fs”) )
接收參數:
srcpath 為來源目錄或檔案的路徑
dstpath 它是存放轉換後的目錄的路徑,預設為目前工作目錄
callback 回調,傳遞一個err異常參數
原始碼:
fs.link = function(srcpath, dstpath, callback) {
callback = makeCallback(callback);
if (!nullCheck(srcpath, callback)) return;
if (!nullCheck(dstpath, callback)) return;
binding.link(pathModule._makeLong(srcpath),
pathModule._makeLong(dstpath),
callback);
};