El método fs.fchown() se usa para cambiar 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. Tiene una función de devolución de llamada que devuelve cualquier error que pueda ocurrir si la función falla.
Sintaxis:
fs.fchown( fd, uid, gid, callback )
Parámetros: este método acepta cuatro 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.
- devolución de llamada: Es una función que sería llamada cuando se ejecuta el método.
- err: es un error que se lanzaría si el método falla.
Los siguientes ejemplos ilustran el método fs.fchown() en Node.js:
Ejemplo 1: Este ejemplo muestra la configuración del propietario.
// Node.js program to demonstrate the // fs.fchown() method // Import the filesystem module const fs = require('fs'); let fd = fs.openSync("example_file.txt", "r"); // Set the owner to a new one keeping the group same // New owner is "geek" with user id 1027 // The old group is "xubuntu" with group id 999 fs.fchown(fd, 1027, 999, (error) => { if (error) console.log("Error Code:", error); else console.log("uid and gid set successfully"); });
Antes de ejecutar el código:
xubuntu@xubuntu: ~/Desktop/fs-fchown$ ls -l total 8 -rw-rw--w- 1 xubuntu xubuntu 4 Apr 26 02:08 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 26 02:08 index.js
Salida del Código:
Given uid and gid set successfully
Después de ejecutar el código:
xubuntu@xubuntu: ~/Desktop/fs-fchown$ ls -l total 8 -rw-rw--w- 1 geek xubuntu 4 Apr 26 02:08 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 26 02:08 index.js
Ejemplo 2: Este ejemplo muestra la configuración del grupo.
// Node.js program to demonstrate the // fs.fchown() method // Import the filesystem module const fs = require('fs'); let fd = fs.openSync("example_file.txt", "r"); // Set the owner to a new one keeping the group same // New owner is "raj" with user id 1025 // New group is "author" with group id 1031 fs.fchown(fd, 1025, 1031, (error) => { if (error) console.log("Error Code:", error); else console.log("uid and gid set successfully"); });
Antes de ejecutar el código:
xubuntu@xubuntu: ~/Desktop/fs-fchown$ ls -l total 8 -rw-rw--w- 1 xubuntu xubuntu 4 Apr 26 02:08 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 26 02:08 index.js
Salida del Código:
Given uid and gid set successfully
Después de ejecutar el código:
xubuntu@xubuntu: ~/Desktop/fs-fchown$ ls -l total 8 -rw-rw--w- 1 raj author 4 Apr 26 02:08 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 26 02:08 index.js
Referencia: https://nodejs.org/api/fs.html#fs_fs_fchown_fd_uid_gid_callback
Publicación traducida automáticamente
Artículo escrito por sayantanm19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA