Método File.SetLastAccessTimeUtc() en C# con ejemplos

File.SetLastAccessTimeUtc(String, DateTime) es un método de clase de archivo incorporado que se utiliza para establecer la fecha y la hora, en tiempo universal coordinado (UTC), en que se accedió por última vez al archivo especificado.
Sintaxis: 

public static void SetLastAccessTimeUtc (string path, DateTime lastAccessTimeUtc);

Parámetro: Esta función acepta dos parámetros que se ilustran a continuación:

  • ruta: Este es el archivo para el cual se establece la información de fecha y hora de acceso.
  • lastAccessTime: Esta es la fecha y hora del último acceso especificado, expresada en hora UTC.

Excepciones:

  • ArgumentException: la ruta es una string de longitud cero, contiene solo espacios en blanco o uno o más caracteres no válidos según lo definido por InvalidPathChars.
  • ArgumentNullException: la ruta es nula.
  • PathTooLongException: la ruta especificada , el nombre de archivo o ambos superan la longitud máxima definida por el sistema.
  • FileNotFoundException: no se encontró la ruta especificada .
  • UnauthorizedAccessException: la persona que llama no tiene el permiso necesario.
  • NotSupportedException: la ruta tiene un formato no válido.
  • ArgumentOutOfRangeException: lastAccessTime especifica un valor fuera del rango de fechas u horas permitidas para esta operación.

A continuación se muestran los programas para ilustrar el método File.SetLastAccessTimeUtc(String, DateTime).
Programa 1: antes de ejecutar el siguiente código, se crea un archivo file.txt con algunos contenidos que se muestran a continuación:
 

file.txt

C#

// C# program to illustrate the usage
// of File.SetLastAccessTimeUtc() method
 
// Using System and System.IO namespaces
using System;
using System.IO;
 
class GFG {
    public static void Main()
    {
        // Specifying a file
        string myfile = @"file.txt";
 
        // Calling the SetLastAccessTimeUtc() function
        // to set last access date and time
        File.SetLastAccessTimeUtc(myfile, new DateTime(2020, 5, 4, 4, 5, 7));
 
        // Getting the last access date and time
        DateTime dt = File.GetLastAccessTimeUtc(myfile);
        Console.WriteLine("The last access date and "+
             "time in UTC for this file was {0}.", dt);
    }
}

Producción:  

The last access date and time in UTC for this file was 5/4/2020 4:05:07 AM.

Programa 2: Inicialmente, no se creó ningún archivo. El código siguiente crea un archivo file.txt e imprime la fecha y hora del último acceso.

C#

// C# program to illustrate the usage
// of File.SetLastAccessTimeUtc() method
 
// Using System and System.IO namespaces
using System;
using System.IO;
 
class GFG {
    public static void Main()
    {
        // Specifying a file
        string path = @"file.txt";
 
        // Checking the existance of the file
        if (!File.Exists(path)) {
            File.Create(path);
        }
 
        // Calling the SetLastAccessTimeUtc() function
        // to set last access date and time
        File.SetLastAccessTimeUtc(path, new DateTime(2019, 5, 4, 4, 5, 7));
 
        // Getting the last access date and time
        DateTime dt = File.GetLastAccessTimeUtc(path);
        Console.WriteLine("The last access date and time "+
                      "in UTC for this file was {0}.", dt);
    }
}

Ejecutando: 

The last access date and time in UTC for this file was 5/4/2019 4:05:07 AM.

Publicación traducida automáticamente

Artículo escrito por Kanchan_Ray 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 *