方法說明:
同步版的 fs.link() 。
文法:
fs.linkSync(srcpath, dstpath)
由於方法屬於fs模組,使用前需要引入fs模組(var fs= require(“fs”) )
接收參數:
srcpath 為來源目錄或檔案的路徑
dstpath 它是存放轉換後的目錄的路徑,預設為目前工作目錄
原始碼:
fs.linkSync = function(srcpath, dstpath) {
nullCheck(srcpath);
nullCheck(dstpath);
return binding.link(pathModule._makeLong(srcpath),
pathModule._makeLong(dstpath));
};