DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> node.js中的fs.lchmodSync方法教程使用說明詳解
node.js中的fs.lchmodSync方法教程使用說明詳解
編輯:關於JavaScript     

方法說明:

同步版的 lchmod() 。

語法:

代碼如下:
fs.lchmodSync(fd, mode)

由於該方法屬於fs模塊,使用前需要引入fs模塊(var fs= require(“fs”) )

接收參數:

fd            文件描述符

mode          文件權限

源碼:

代碼如下:
fs.lchmodSync = function(path, mode) {
    var fd = fs.openSync(path, constants.O_WRONLY | constants.O_SYMLINK);
    // prefer to return the chmod error, if one occurs,
    // but still try to close, and report closing errors if they occur.
    var err, err2;
    try {
      var ret = fs.fchmodSync(fd, mode);
    } catch (er) {
      err = er;
    }
    try {
      fs.closeSync(fd);
    } catch (er) {
      err2 = er;
    }
    if (err || err2) throw (err || err2);
    return ret;
  };
}

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved