FileSystemInfo.LastAccessTime Właściwość

Definicja

Pobiera lub ustawia czas ostatniego uzyskania dostępu do bieżącego pliku lub katalogu.

public:
 property DateTime LastAccessTime { DateTime get(); void set(DateTime value); };
public DateTime LastAccessTime { get; set; }
member this.LastAccessTime : DateTime with get, set
Public Property LastAccessTime As DateTime

Wartość właściwości

Czas ostatniego uzyskania dostępu do bieżącego pliku lub katalogu.

Wyjątki

Refresh() program nie może zainicjować danych.

Bieżący system operacyjny nie jest windows NT lub nowszy.

Obiekt wywołujący próbuje ustawić nieprawidłowy czas dostępu

Przykłady

Poniższy przykład kodu przedstawia aktualizowanie LastAccessTime właściwości za pomocą operacji "touch". W tym przykładzie plik jest "dotykany", aktualizuje CreationTimeLastAccessTime właściwości i do LastWriteTime bieżącej daty i godziny.

using System;
using System.IO;

namespace touch
{
    class Touch
    {
        static void Main(string[] args)
        {
            // Make sure a filename was provided.
            if (args.Length > 0)
            {
                // Verify that the provided filename exists.
                if (File.Exists(args[0]))
                {
                    FileInfo fi = new FileInfo(args[0]);
                    touchFile(fi);
                }
                else
                {
                    Console.WriteLine(
                        "Could not find the file: {0}.", args[0]);
                }
            }
            else
            {
                Console.WriteLine("No file was specified.");
            }
        }

        static void touchFile(FileSystemInfo fsi)
        {
            Console.WriteLine("Touching: {0}", fsi.FullName);

            // Update the CreationTime, LastWriteTime and LastAccessTime.
            try
            {
                fsi.CreationTime = fsi.LastWriteTime = fsi.LastAccessTime =
                    DateTime.Now;
            }
            catch (Exception e)
            {
                Console.WriteLine("Error: {0}", e.Message);
            }
        }
    }
}
Imports System.IO

Public Class Touch
    Public Shared Sub Main(ByVal args() As String)

        ' Make sure an argument (filename) was provided.
        If args.Length > 0 Then

            ' Verify that the provided filename exists.
            If File.Exists(args(0)) Then
                Dim fi As FileInfo = New FileInfo(args(0))
                touchFile(fi)
            Else
                Console.WriteLine("Could not find the file {0}", args(0))
            End If
        Else
            Console.WriteLine("No file specified.")
        End If
    End Sub

    Public Shared Sub touchFile(ByVal fsi As FileSystemInfo)
        Console.WriteLine("Touching: {0}", fsi.FullName)

        ' Update the CreationTime, LastWriteTime and LastAccessTime.
        Try
            fsi.CreationTime = DateTime.Now
            fsi.LastAccessTime = DateTime.Now
            fsi.LastWriteTime = DateTime.Now
        Catch e As Exception
            Console.WriteLine("Error: {0}", e.Message)
        End Try

    End Sub

End Class

Uwagi

Uwaga

Ta metoda może zwrócić niedokładną wartość, ponieważ używa ona funkcji natywnych, których wartości mogą nie być stale aktualizowane przez system operacyjny.

Jeśli plik opisany w FileSystemInfo obiekcie nie istnieje, ta właściwość zwraca 12:00 północy, 1 stycznia 1601 R.D. (C.E.) Uniwersalny czas koordynowany (UTC), dostosowany do czasu lokalnego.

Wartość LastAccessTimeUtc właściwości jest wstępnie buforowana, jeśli bieżące wystąpienie FileSystemInfo obiektu zostało zwrócone z dowolnej z następujących DirectoryInfo metod:

Aby uzyskać najnowszą wartość, wywołaj metodę Refresh .

Dotyczy

Zobacz też