FileSystemInfo.LastWriteTime Właściwość

Definicja

Pobiera lub ustawia czas ostatniego zapisania bieżącego pliku lub katalogu.

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

Wartość właściwości

Czas ostatniego zapisania bieżącego pliku.

Wyjątki

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

Bieżący system operacyjny nie jest systemem Windows NT lub nowszym.

Obiekt wywołujący próbuje ustawić nieprawidłowy czas zapisu.

Przykłady

W poniższym przykładzie kodu pokazano aktualizowanie LastWriteTime właściwości za pomocą operacji "touch". W tym przykładzie plik jest "dotykany", aktualizując 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 funkcji natywnych, których wartości nie mogą być stale aktualizowane przez system operacyjny.

Wartość LastWriteTime 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 .

Jeśli plik lub katalog opisany w FileSystemInfo obiekcie nie istnieje lub system plików, który zawiera ten plik lub katalog nie obsługuje tych informacji, ta właściwość zwraca 12:00 północy, 1 stycznia 1601 A.D. (C.E.) Uniwersalny czas koordynowany (UTC), dostosowany do czasu lokalnego.

Dotyczy

Zobacz też