方法說明:
創建硬鏈接。
語法:
代碼如下:
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);
};