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


Node.js fsPromises.lchown()用法及代碼示例


fsPromises.lchown()方法用於更改文件的所有權,然後在成功時不帶參數地解析Promise。該函數接受可用於設置各自所有者和組的用戶ID和組ID。

用法:

fsPromises.lchown( path, uid, gid )

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

  • path:它是一個字符串,緩衝區或URL,表示必須更改所有者和組的文件的路徑。
  • uid:這是一個整數,表示與要設置的所有者相對應的用戶ID。
  • gid:這是一個整數,表示與要設置的組相對應的組ID。

注意:此方法僅在macOS上實現。

例:Node.js程序演示fsPromises.lchown()方法。



文件名:index.js

// Node.js program to demonstrate the  
// fsPromises.lchown() method  
    
// Import the filesystem module  
const fs = require('fs');  
const fsPromises = fs.promises; 
    
let filepath = "example_file.txt";  
let symlinkpath = "symlinkFile";  
    
// Create a symlink to the file  
fs.symlinkSync(filepath, symlinkpath);  
    
// Set the owner and group of the 
// symbolic link to a new one  
// New owner is "geeksforgeeks" with 
// user id 1200 New group is "editor" 
// with group id 1201  
fs.lchown(symlinkpath, 1200, 1201) 
.then(function() { 
  console.log("Given uid and gid set successfully");  
}) 
.catch(function(error) { 
  console.log(error); 
});

運行此程序的步驟:使用以下命令運行index.js文件:

node index.js

在運行代碼之前:

xubuntu@xubuntu:~/Desktop/fs-lchown$ ls -l
total 4
-rw-rw--w- 1 xubuntu xubuntu 4 Apr 26 05:10 example_file.txt
-rw-rw-r-- 1 xubuntu xubuntu 290 Apr 26 05:15 index.js

代碼輸出:

Given uid and gid set successfully

運行代碼後:

xubuntu@xubuntu:~/Desktop/fs-lchown$ ls -l
total 4
-rw-rw--w- 1 xubuntu xubuntu 4 Apr 26 05:10 example_file.txt
-rw-rw-r-- 1 xubuntu xubuntu 290 Apr 26 05:15 index.js
lrwxrwxrwx 1 geeksforgeeks editor 16 Apr 26 09:15 
        symlinkFile -> example_file.txt

相關用法


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