FileSystemInfo.LastAccessTime 属性     
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置上次访问当前文件或目录的时间。
public:
 property DateTime LastAccessTime { DateTime get(); void set(DateTime value); };public DateTime LastAccessTime { get; set; }member this.LastAccessTime : DateTime with get, setPublic Property LastAccessTime As DateTime属性值
上次访问当前文件或目录的时间。
例外
Refresh() 不能初始化数据。
当前操作系统不是 Windows NT 或更高版本。
调用方试图设置无效的访问时间
示例
下面的代码示例演示如何通过“触摸”操作更新 LastAccessTime 属性。 在此示例中,将“接触”文件,将 CreationTime、 LastAccessTime 和 LastWriteTime 属性更新为当前日期和时间。
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
注解
注意
此方法可能返回不准确的值,因为它使用本机函数,其值可能不会由操作系统持续更新。
如果 对象中描述的 FileSystemInfo 文件不存在,此属性返回 1601 年 1 月 1 日午夜 12:00,00, (C.E.) 协调世界时 (UTC) ,调整为本地时间。
如果对象的当前实例FileSystemInfo是从以下DirectoryInfo任一方法返回的,则属性的值LastAccessTimeUtc是预先缓存的:
若要获取最新值,请 Refresh 调用 方法。