fs.chmodSync()方法用於同步更改給定路徑的權限。可以使用字符串常量或與它們各自的文件模式相對應的八進製數字來指定這些權限。
注意:Windows平台僅支持更改寫權限。它還不支持區分用戶權限,組權限或其他權限。
用法:
fs.chmodSync( path, mode )
參數:此方法接受上述和以下所述的兩個參數:
- path:它是一個字符串,Buffer或URL,表示必須更改其權限的文件的路徑。
 - mode:它是字符串或八進製整數常量,表示要授予的權限。邏輯OR運算符可用於分隔多個權限。
 
以下示例說明了Node.js中的fs.chmodSync()方法:
範例1:此示例顯示了使用字符串常量和OR運算符來授予文件權限的用法。
// Node.js program to demonstrate the 
// fs.chmodSync method 
  
// Import the filesystem module 
const fs = require('fs'); 
  
// Allowing only read permission 
console.log("Giving only read permission to user"); 
fs.chmodSync("example.txt", fs.constants.S_IRUSR); 
  
// Check the file mode 
console.log("Current File Mode:",  
    fs.statSync("example.txt").mode); 
  
// Reading the file 
console.log("File Contents:",  
    fs.readFileSync("example.txt", 'utf8')); 
  
// Trying to write to file 
try { 
  console.log("Trying to write to file"); 
  fs.writeFileSync('example.txt', "Hello"); 
} 
catch (e) { 
  console.log("Error Found, Code:", e.code); 
} 
  
// Allowing both read and write permission 
console.log("\nGiving both read and write"
    + " permissions to user"); 
  
fs.chmodSync("example.txt", 
    fs.constants.S_IRUSR | fs.constants.S_IWUSR); 
  
// Check the file mode 
console.log("Current File Mode:", 
    fs.statSync("example.txt").mode); 
  
console.log("Trying to write to file"); 
fs.writeFileSync('example.txt', "World"); 
  
console.log("File Contents:", 
    fs.readFileSync("example.txt", 'utf8'));輸出:
Giving only read permission to user Current File Mode:33024 File Contents:Hello Trying to write to file Error Found, Code:EACCES Giving both read and write permissions to user Current File Mode:33152 Trying to write to file File Contents:World
範例2:本示例說明使用八進製整數常量來授予文件權限。
// Node.js program to demonstrate the 
// fs.chmodSync method 
  
// Import the filesystem module 
const fs = require('fs'); 
  
// Allowing only read permission 
console.log("Giving only read permission to everyone"); 
fs.chmodSync("example.txt", 0o444); 
  
// Check the file mode 
console.log("Current File Mode:",  
    fs.statSync("example.txt").mode); 
  
// Reading the file 
console.log("File Contents:",  
    fs.readFileSync("example.txt", 'utf8')); 
  
// Trying to write to file 
try { 
  console.log("Trying to write to file"); 
  fs.writeFileSync('example.txt', "Hello"); 
} 
catch (e) { 
  console.log("Error Found, Code:", e.code); 
} 
  
// Allowing both read and write permission 
console.log("\nGiving both read and "
     + "write permission to everyone"); 
fs.chmodSync("example.txt", 0o666); 
  
// Check the file mode 
console.log("Current File Mode:",  
    fs.statSync("example.txt").mode); 
  
console.log("Trying to write to file"); 
fs.writeFileSync('example.txt', "World"); 
  
console.log("File Contents:",  
    fs.readFileSync("example.txt", 'utf8'));輸出:
Giving only read permission to everyone Current File Mode:33060 File Contents:Hello Trying to write to file Error Found, Code:EACCES Giving both read and write permission to everyone Current File Mode:33206 Trying to write to file File Contents:World
參考: https://nodejs.org/api/fs.html#fs_fs_chmodsync_path_mode
相關用法
- Node.js GM minify()用法及代碼示例
 - Node.js GM magnify()用法及代碼示例
 - Node.js GM write()用法及代碼示例
 - Node.js GM drawRectangle()用法及代碼示例
 - Node.js GM whitePoint()用法及代碼示例
 - Node.js GM whiteThreshold()用法及代碼示例
 - Node.js GM modulate()用法及代碼示例
 - Node.js GM drawEllipse()用法及代碼示例
 - Node.js GM drawCircle()用法及代碼示例
 - Node.js GM drawPolyline()用法及代碼示例
 
注:本文由純淨天空篩選整理自sayantanm19大神的英文原創作品 Node.js | fs.chmodSync() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。
