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


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


fs.chown()方法用於異步更改給定路徑的所有者和組。該函數接受用戶ID和組ID,這些用戶ID和組ID可用於設置各自的所有者和組。它具有一個回調函數,該函數返回該函數失敗時可能發生的任何錯誤。

用法:

fs.chown( path, uid, gid, callback )

參數:此方法接受上述和以下所述的四個參數:



  • path:它是一個字符串,Buffer或URL,表示必須更改所有者和組的文件的路徑。
  • uid:該數字表示與要設置的所有者相對應的用戶ID。
  • gid:該數字表示與要設置的組相對應的組ID。
  • callback:該方法執行時將調用該函數。
    • err:如果方法失敗,將引發錯誤。

以下示例說明了Node.js中的fs.chown()方法:

範例1:本示例顯示所有者的設置。

// Node.js program to demonstrate the 
// fs.chown() method 
  
// Import the filesystem module 
const fs = require('fs'); 
  
let filepath = "example_file.txt"; 
  
// Set the owner to a new one keeping the group same 
// New owner is "geeksforgeeks" with user id 1541 
fs.chown(filepath, 1541, 999, (error) => { 
  if (error) 
    console.log("Error Code:", error); 
  else
    console.log("uid and gid set successfully"); 
});

在運行代碼之前:

xubuntu@xubuntu:~/Desktop/fs-chown$ ls -l
total 8
-rw-rw--w- 1 xubuntu xubuntu 4 Apr 25 04:08 example_file.txt
-rw-rw-r-- 1 xubuntu xubuntu 290 Apr 25 04:08 index.js

代碼輸出:

Given uid and gid set successfully

運行代碼後:

xubuntu@xubuntu:~/Desktop/fs-chown$ ls -l
total 8
-rw-rw--w- 1 geeksforgeeks xubuntu 4 Apr 25 04:08 example_file.txt
-rw-rw-r-- 1 xubuntu xubuntu 290 Apr 25 04:08 index.js

範例2:本示例顯示了組的設置。

// Node.js program to demonstrate the 
// fs.chown() method 
  
// Import the filesystem module 
const fs = require('fs'); 
  
let filepath = "example_file.txt"; 
  
// Set the owner and group both to a new one 
// New owner is "sam" with owner id 1500 
// New group is "author" with group id 1021 
fs.chown(filepath, 1500, 1021, (error) => { 
  if (error) 
    console.log("Error Code:", error); 
  else
    console.log("uid and gid set successfully"); 
});

在運行代碼之前:

xubuntu@xubuntu:~/Desktop/fs-chown$ ls -l
total 8
-rw-rw--w- 1 xubuntu xubuntu 4 Apr 25 04:09 example_file.txt
-rw-rw-r-- 1 xubuntu xubuntu 290 Apr 25 04:09 index.js

代碼輸出:

Given uid and gid set successfully

運行代碼後:

xubuntu@xubuntu:~/Desktop/fs-chown$ ls -l
total 8
-rw-rw--w- 1 sam author 4 Apr 25 04:09 example_file.txt
-rw-rw-r-- 1 xubuntu xubuntu 290 Apr 25 04:09 index.js

參考: https://nodejs.org/api/fs.html#fs_fs_chown_path_uid_gid_callback




相關用法


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