方法說明:
創建符號鏈接。
語法:
代碼如下:
fs.symlink(srcpath, dstpath, [type], [callback(err)])
由於該方法屬於fs模塊,使用前需要引入fs模塊(var fs= require(“fs”) )
接收參數:
srcpath 為源目錄或文件的路徑
dstpath 它是存放轉換後的目錄的路徑,默認為當前工作目錄
type 默認值:'file' , 可選值 ‘dir', ‘file', 或者 ‘junction' ,該項僅用於Windows(在其他平台上忽略)。
注意Windows結點需要轉換後的目錄是絕對路徑,使用“junction”時,目標參數將自動被歸一化到的絕對路徑。
callback 回調,傳遞一個異常參數err
源碼:
代碼如下:
fs.symlink = function(destination, path, type_, callback) {
var type = (util.isString(type_) ? type_ : null);
var callback = makeCallback(arguments[arguments.length - 1]);
if (!nullCheck(destination, callback)) return;
if (!nullCheck(path, callback)) return;
binding.symlink(preprocessSymlinkDestination(destination, type),
pathModule._makeLong(path),
type,
callback);
};