首頁  >  文章  >  web前端  >  node.js中的fs.symlink方法使用說明_node.js

node.js中的fs.symlink方法使用說明_node.js

WBOY
WBOY原創
2016-05-16 16:27:021342瀏覽

方法說明:

建立符號連結。

文法:

複製程式碼 程式碼如下:

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,
                 ));
};
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn