FileSystemEventArgs.ChangeType プロパティ

定義

発生したディレクトリ イベントの種類を取得します。

public:
 property System::IO::WatcherChangeTypes ChangeType { System::IO::WatcherChangeTypes get(); };
public System.IO.WatcherChangeTypes ChangeType { get; }
member this.ChangeType : System.IO.WatcherChangeTypes
Public ReadOnly Property ChangeType As WatcherChangeTypes

プロパティ値

WatcherChangeTypes

ファイル システムで検出する変更の種類を表す WatcherChangeTypes 値の 1 つ。

ChangeTypeプロパティの例を次に示します。 このコード例は、FileSystemEventArgs クラスのために提供されている大規模な例の一部です。

//  This method is called when a file is created, changed, or deleted.
private static void OnChanged(object source, FileSystemEventArgs e)
{
    //  Show that a file has been created, changed, or deleted.
    WatcherChangeTypes wct = e.ChangeType;
    Console.WriteLine("File {0} {1}", e.FullPath, wct.ToString());
}
' This method is called when a file is created, changed, or deleted.
Private Sub OnChanged(ByVal source As Object, ByVal e As FileSystemEventArgs)

    ' Show that a file has been created, changed, or deleted.
    Dim wct As WatcherChangeTypes = e.ChangeType
    Console.WriteLine("File {0} {1}", e.FullPath, wct.ToString())
End Sub

適用対象

こちらもご覧ください