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

File.SetLastAccessTime(String, DateTime) es un método de clase de archivo incorporado que se usa para establecer la fecha y la hora en que se accedió por última vez al archivo especificado.

Sintaxis: 

public static void SetLastAccessTime (string path, DateTime lastAccessTime);

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 local del último acceso especificado.

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.SetLastAccessTime(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.SetLastAccessTime() 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 SetLastAccessTime() function
        // to set last access date and time
        File.SetLastAccessTime(myfile, new DateTime(2020, 5, 4, 4, 5, 7));
 
        // Getting the last access date and time
        DateTime dt = File.GetLastAccessTime(myfile);
        Console.WriteLine("The last access date and"+
                 " time for this file was {0}.", dt);
    }
}

Producción: 

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

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

C#

// C# program to illustrate the usage
// of File.SetLastAccessTime() 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 existence of the file
        if (!File.Exists(path)) {
            File.Create(path);
        }
 
        // Calling the SetLastAccessTime() function
        // to set last access date and time
        File.SetLastAccessTime(path, new DateTime(2019, 5, 4, 4, 5, 7));
 
        // Getting the last access date and time
        DateTime dt = File.GetLastAccessTime(path);
        Console.WriteLine("The last access date and "+
                  "time for this file was {0}.", dt);
    }
}

Producción: 

The last access date and time 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 *