FileSystemInfo.LastAccessTime Özellik

Tanım

Geçerli dosya veya dizine en son erişildiği zamanı alır veya ayarlar.

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

Özellik Değeri

DateTime

Geçerli dosya veya dizine en son erişildiği saat.

Özel durumlar

Refresh() verileri başlatamıyor.

Geçerli işletim sistemi Windows NT veya üzeri değil.

Çağıran geçersiz bir erişim süresi ayarlamaya çalışır

Örnekler

Aşağıdaki kod örneği, bir "dokunma" işlemi aracılığıyla özelliğin LastAccessTime güncelleştirilmesini gösterir. Bu örnekte, dosya "dokunularak" ve özellikleri geçerli tarih ve LastWriteTime saate güncelleştiriliyor.CreationTimeLastAccessTime

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

Açıklamalar

Not

Bu yöntem, değerleri işletim sistemi tarafından sürekli güncelleştirilemeyen yerel işlevler kullandığından yanlış bir değer döndürebilir.

nesnesinde FileSystemInfo açıklanan dosya yoksa, bu özellik 1 Ocak 1601'de gece yarısı 12:00'yi döndürür. (C.E.) Eşgüdümlü Evrensel Saat (UTC), yerel saate göre ayarlanır.

Nesnenin LastAccessTimeUtc geçerli örneği aşağıdaki DirectoryInfo yöntemlerden birinden döndürüldüyse özelliğin FileSystemInfo değeri önceden önbelleğe alınır:

En son değeri almak için yöntemini çağırın Refresh .

Şunlara uygulanır

Ayrıca bkz.