El método fs.fchownSync() se usa para cambiar sincrónicamente el propietario y el grupo del descriptor de archivo dado. La función acepta una identificación de usuario y una identificación de grupo que se pueden usar para configurar el propietario y el grupo respectivos. No devuelve nada.
Sintaxis:
fs.fchownSync( fd, uid, gid )
Parámetros: este método acepta tres parámetros, como se mencionó anteriormente y se describe a continuación:
- fd: es un número entero que denota el descriptor de archivo del archivo del cual se debe cambiar el propietario y el grupo.
- uid: Es un número que denota el id de usuario que corresponde al propietario a configurar.
- gid: Es un número que denota el id de grupo que corresponde al grupo a configurar.
Los siguientes ejemplos ilustran el método fs.fchownSync() en Node.js:
Ejemplo 1: Este ejemplo muestra la configuración del propietario.
// Node.js program to demonstrate the // fs.fchownSync() method // Import the filesystem module const fs = require('fs'); // Get the file descriptor for the file let fd = fs.openSync("example_file.txt", "r"); // Set the owner to a new one keeping the group same // New owner is "geeksforgeeks" with user id 1010 // The old group is "xubuntu" with group id 999 fs.fchownSync(fd, 1010, 999); console.log("uid and gid set successfully");
Antes de ejecutar el código:
xubuntu@xubuntu: ~/Desktop/fs-fchownSync$ ls -l total 8 -rw-rw--w- 1 xubuntu xubuntu 4 Apr 22 09:10 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 22 09:15 index.js
Salida del Código:
Given uid and gid set successfully
Después de ejecutar el código:
xubuntu@xubuntu: ~/Desktop/fs-fchownSync$ ls -l total 8 -rw-rw--w- 1 geeksforgeeks xubuntu 4 Apr 22 09:10 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 22 09:15 index.js
Ejemplo 2: Este ejemplo muestra la configuración del grupo.
// Node.js program to demonstrate the // fs.fchownSync() method // Import the filesystem module const fs = require('fs'); // Get the file descriptor for the file let fd = fs.openSync("example_file.txt", "r"); // Set the group to a new one keeping the owner same // The old owner is "xubuntu" with user id 999 // New group is "author" with group id 1015 fs.fchownSync(fd, 999, 1015); console.log("uid and gid set successfully");
Antes de ejecutar el código:
xubuntu@xubuntu: ~/Desktop/fs-fchownSync$ ls -l total 8 -rw-rw--w- 1 xubuntu xubuntu 4 Apr 22 09:10 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 22 09:15 index.js
Salida del Código:
Given uid and gid set successfully
Después de ejecutar el código:
xubuntu@xubuntu: ~/Desktop/fs-fchownSync$ ls -l total 8 -rw-rw--w- 1 xubuntu author 4 Apr 22 09:10 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 22 09:15 index.js
Referencia: https://nodejs.org/api/fs.html#fs_fs_fchownsync_fd_uid_gid
Publicación traducida automáticamente
Artículo escrito por sayantanm19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA