Método Node.js fs.filehandle.utimes()

El método fs.filehandle.utimes() es una interfaz de programación de aplicaciones incorporada de clase fs.filehandle dentro del módulo Sistema de archivos que se utiliza para cambiar la marca de tiempo de este sistema de archivos.

Sintaxis:  

const filehandle.utimes(atime, mtime)

Parámetro: este método acepta dos parámetros, como se mencionó anteriormente y se describe a continuación: 

  • atime: la marca de tiempo de acceso es la última vez que se leyó el archivo.
  • mtime: la marca de tiempo modificada indica la última vez que se modificó el contenido de un archivo.

Valor devuelto: este método devuelve una promesa pendiente que no contiene ningún valor.

Los siguientes programas ilustran el uso del método fs.filehandle.utimes() en Node.js:

Ejemplo 1: Nombre de archivo: index.js 

Javascript

// Node.js program to demonstrate the
// filehandle.utimes() method
const fs = require('fs');
const fsPromises = fs.promises;
 
console.log("content of the file before operation :- "
        + fs.readFileSync('example.txt', 'utf8'));
 
// File cTime before operation
fs.stat('example.txt', (err, stats) => {
    if (err) throw err;
 
    console.log("CTime of the file before operation: "
                    + stats.ctime);
});
 
// Initiating asyncrionise function
async function funct() {
 
    // Initializing following variables
    let filehandle = null;
    let prom = null;
 
    try {
 
        // Creating and initiating  filehandle
        filehandle = await
            fsPromises.open('example.txt', 'r+');
 
        // Changing the timestamp of the file
        // by using utimes() method
        prom = filehandle.utimes(0, 10);
 
    } finally {
 
        if (filehandle) {
 
            // File cTime after operation
            (filehandle.stat(true))
                        .then(function (result) {
                console.log("CTime of the file "
                        + "after operation :- "
                        + result.ctime);
            })
 
            console.log("content of the file "
                    + "after operation : " +
                fs.readFileSync('example.txt', 'utf8'));
 
            // 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: 

contenido del archivo antes de la operación: contenido del archivo ejemplo.txt 
CHora del archivo antes de la operación: martes, 07 de julio de 2020 09:21:11 GMT+0530 (hora estándar de la India) 
contenido del archivo después de la operación: contenido del archivo ejemplo.txt 
CTime del archivo después de la operación:- Tue Jul 07 2020 09:53:15 GMT+0530 (India Standard Time) 
 

Ejemplo 2: Nombre de archivo: index.js  

Javascript

// Node.js program to demonstrate the
// filehandle.utimes() 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)));
    }
});
 
// File cTime before operation
fs.stat(file, (err, stats) => {
    if (err) throw err;
 
    console.log(
        "CTime of the file before operation: "
        + stats.ctime);
});
 
// Initiating asyncrionise function
async function funct() {
 
    // Initializing filehandle
    let filehandle = null;
 
    try {
 
        // Creating and initiating  filehandle
        filehandle = await
            fsPromises.open(file, 'r+');
 
        // Changing the timestamp of the file
        // by using utimes() method
        prom = filehandle.utimes(0, 20);
 
    } finally {
 
        if (filehandle) {
 
            // Close the file if it is opened.
            // file cTime after operation
            (filehandle.stat(true))
                    .then(function (result) {
                console.log("CTime of the file "
                        + "after operation :- "
                        + result.ctime);
            })
 
            console.log("content of file after"
                + " operation: " +
                (fs.readFileSync(file)));
 
            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:  

contenido del archivo antes de la operación: Este es un archivo que contiene una colección de libros. 
CHora del archivo antes de la operación: martes, 07 de julio de 2020 09:56:52 GMT+0530 (hora estándar de la India) 
contenido del archivo después de la operación: este es un archivo que contiene una colección de libros. 
Hora del archivo después de la operación: martes 07 de julio de 2020 09:57:09 GMT+0530 (hora estándar de la India) 
 

Referencia: https://nodejs.org/dist/latest-v12.x/docs/api/fs.html#fs_filehandle_utimes_atime_mtime
 

Publicación traducida automáticamente

Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *