當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Node.js fs.filehandle.chmod()用法及代碼示例

fs.filehandle.chmod()方法是“文件係統”模塊中fs.filehandle類的內置應用程序編程接口,用於更改特定文件的權限。

用法:

const filehandle.chmod( mode )

參數:此方法接受包含整數值的單參數模式。

返回值:此方法返回未包含的承諾。

下麵的程序演示了fs.filehandle.chmod()方法的使用。



範例1: 文件名:index.js

// Node.js program to demonstrate the  
// fs.filehandle.chmod() method 
const fs = require('fs'); 
const fsPromises = fs.promises; 
  
console.log("content of file beofre "
        + "operation:- " + 
        (fs.readFileSync('example.txt'))); 
  
// Initiating asyncrionise function 
async function funct() { 
  
    // Initializng filehandle 
    let filehandle = null; 
  
    try { 
  
        // Creating and initiating filehandle 
        filehandle = await fsPromises 
                .open('example.txt', 'r+'); 
  
        // Modyifying the file permission 
        // by using chmod() method 
        const prom = filehandle.chmod(1); 
  
    } finally { 
  
        if (filehandle) { 
  
            // Close the file if it is opened. 
            console.log("permission is changed"
                        + " to read only"); 
  
            console.log("content of file beofre"
                    + " operation:- " + 
                (fs.readFileSync('example.txt'))); 
  
            await filehandle.close(); 
        } 
    } 
} 
  
funct().catch(console.error);

運行程序之前的目錄結構:

運行程序後的目錄結構:

使用以下命令運行index.js文件:

node index.js

輸出:

content of file before operation:- Content of example.txt file
permission is changed to read only
content of file after operation:- Content of example.txt file

範例2: 文件名:index.js

// Node.js program to demonstrate the  
// fs.filehandle.chmod() method 
const fs = require('fs'); 
const fsPromises = fs.promises; 
  
// data for the new file 
let data = "This is a file containing"
        + " a collection of books."; 
  
// Name of the file to be created 
let file = "books.txt"; 
  
// Creating the new file 'books.txt' 
fs.writeFile(file, data, (err) => { 
  
    // Cathing error 
    if (err) { 
        console.log(err); 
    } 
}); 
  
// Using fs.exists() method  
fs.exists(file, (exists) => { 
    if (exists) { 
        console.log("content of file "
            + "before operation:- " + 
            (fs.readFileSync(file))); 
    } 
}); 
  
// Initiating asyncrionise function 
async function funct() { 
  
    // Initializng filehandle 
    let filehandle = null; 
  
    try { 
  
        // Creating and initiating  filehandle 
        filehandle = await fsPromises.open(file, 'r+'); 
  
        // Modyifying the file permission 
        // by using chmod() method 
        const prom = filehandle.chmod(1); 
  
    } finally { 
  
        if (filehandle) { 
  
            // Close the file if it is opened. 
            console.log("permission is "
                + "changed to read only"); 
                  
            console.log("content of file"
                + "after operation:- " + 
                (fs.readFileSync(file))); 
  
            await filehandle.close(); 
        } 
    } 
} 
  
funct().catch(console.error);

運行程序之前的目錄結構:

運行程序後的目錄結構:

使用以下命令運行index.js文件:

node index.js

輸出:

content of file before operation:- This is a file containing a collection of books.
permission is changed to read only
content of file after operation:- This is a file containing a collection of books.

參考: https://nodejs.org/dist/latest-v12.x/docs/api/fs.html#fs_filehandle_chmod_mode




相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Node.js fs.filehandle.chmod() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。