El método fs.chownSync() se usa para cambiar sincrónicamente el propietario y el grupo de la ruta dada. 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.chownSync( path, uid, gid )
Parámetros: este método acepta tres parámetros, como se mencionó anteriormente y se describe a continuación:
- ruta: Es una string, Buffer o URL que denota la ruta 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.chownSync() en Node.js:
Ejemplo 1: Este ejemplo muestra la configuración del propietario.
// Node.js program to demonstrate the // fs.chownSync() 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 1100 // The old group is "xubuntu" with group id 999 fs.chownSync(filepath, 1100, 999); console.log("Given uid and gid set successfully");
Antes de ejecutar el código:
xubuntu@xubuntu: ~/Desktop/fs-chownSync$ ls -l total 8 -rw-rw--w- 1 xubuntu xubuntu 4 Apr 23 09:08 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 23 09:08 index.js
Salida del Código:
Given uid and gid set successfully
Después de ejecutar el código:
xubuntu@xubuntu: ~/Desktop/fs-chownSync$ ls -l total 8 -rw-rw--w- 1 geeksforgeeks xubuntu 4 Apr 23 09:08 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 23 09:08 index.js
Ejemplo 2: Este ejemplo muestra la configuración del grupo.
// Node.js program to demonstrate the // fs.chownSync() method // Import the filesystem module const fs = require('fs'); let filepath = "example_file.txt"; // Set the group to a new one keeping the owner same // New group is "editor" with group id 1201 fs.chownSync(filepath, 999, 1201); console.log("Given uid and gid set successfully");
Antes de ejecutar el código:
xubuntu@xubuntu: ~/Desktop/fs-chownSync$ ls -l total 8 -rw-rw--w- 1 xubuntu xubuntu 4 Apr 23 09:08 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 23 09:08 index.js
Salida del Código:
Given uid and gid set successfully
Después de ejecutar el código:
xubuntu@xubuntu: ~/Desktop/fs-chownSync$ ls -l total 8 -rw-rw--w- 1 xubuntu editor 4 Apr 23 09:08 example_file.txt -rw-rw-r-- 1 xubuntu xubuntu 290 Apr 23 09:08 index.js
Referencia: https://nodejs.org/api/fs.html#fs_fs_chownsync_path_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