El método fs.filehandle.write() es una interfaz de programación de aplicaciones integrada de clase fs.filehandle dentro del módulo Sistema de archivos que se utiliza para escribir los datos del búfer en ese archivo en particular.
Sintaxis:
const filehandle.write(buffer[, offset[, length[, position]]])
Parámetro: Este método toma el siguiente parámetro:
- buffer: Buffer que proporcionará los datos que necesitan ser almacenados.
- offset: punto de inicio en el búfer.
- longitud: Número de bytes a escribir.
- position: Punto de inicio del archivo.
Valor devuelto: este método devuelve una promesa pendiente que contiene el búfer y la propiedad bytesWritten que describe la cantidad de bytes escritos.
Los siguientes programas ilustran el uso del método fs.filehandle.write() en Node.js:
Ejemplo 1: Nombre de archivo: index.js
javascript
// Node.js program to demonstrate the // filehandle.write() method const fs = require('fs'); const fsPromises = fs.promises; console.log("file before write operation :- " + fs.readFileSync('example.txt', 'utf8')); // Initiating asyncrionise function async function funct() { // Initializing following variables let filehandle = null; let prom = null; let buffer = Buffer.from('Geeks'); try { // Creating and initiating filehandle filehandle = await fsPromises.open('example.txt', 'r+'); // Writting the file by using // write() method prom = filehandle.write( buffer, 0, buffer.length, 0); } finally { if (filehandle) { // Display the result prom.then(function (result) { console.log( "file after write operation :- " + (result.buffer).toString()); }) // Close the file if it is opened. await filehandle.close(); } } } funct().catch(console.error);
Estructura del directorio antes de ejecutar el programa:
Estructura del directorio después de ejecutar el programa:
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
file before write operation :- Geeks for Geeks file after write operation :- Geeks
Ejemplo 2: Nombre de archivo: index.js
javascript
// Node.js program to demonstrate the // filehandle.sync() method const fs = require('fs'); const fsPromises = fs.promises; // Data for the new file let data = "This is a file containing" + " a collection of books."; // Name of the file to be created let file = "books.txt"; // Creating the new file 'books.txt' fs.writeFile(file, data, (err) => { // Catching error if (err) { console.log(err); } }); // Using fs.exists() method fs.exists(file, (exists) => { if (exists) { console.log( "content of file before operation :- " + (fs.readFileSync(file))); } }); // Initiating asyncrionise function async function funct() { // Initializing filehandle let filehandle = null; // Initializing following variables let buffer = Buffer.from('ABCD'); try { // Creating and initiating filehandle filehandle = await fsPromises.open(file, 'r+'); // Writting the file // by using write() method prom = filehandle.write( buffer, 0, buffer.length, 0); } finally { if (filehandle) { // Display the result prom.then(function (result) { console.log( "file after write operation :- " + (result.buffer).toString()); }) await filehandle.close(); } } } funct().catch(console.error);
Estructura del directorio antes de ejecutar el programa:
Estructura del directorio después de ejecutar el programa:
Ejecute el archivo index.js con el siguiente comando:
node index.js
Producción:
content of file before operation :- This is a file containing a collection of books. file after write operation :- ABCD
Referencia: https://nodejs.org/dist/latest-v12.x/docs/api/fs.html#fs_filehandle_write_buffer_offset_length_position
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA