RenamedEventArgs.OldFullPath プロパティ

定義

影響を受けるファイルまたはディレクトリの前回の絶対パスを取得します。

public:
 property System::String ^ OldFullPath { System::String ^ get(); };
public string OldFullPath { get; }
member this.OldFullPath : string
Public ReadOnly Property OldFullPath As String

プロパティ値

影響を受けるファイルまたはディレクトリの前回の絶対パス。

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

//  This method is called when a file is renamed.
private static void OnRenamed(object source, RenamedEventArgs e)
{
    //  Show that a file has been renamed.
    WatcherChangeTypes wct = e.ChangeType;
    Console.WriteLine("File {0} {2} to {1}", e.OldFullPath, e.FullPath, wct.ToString());
}
' This method is called when a file is renamed.
Private Sub OnRenamed(ByVal source As Object, ByVal e As RenamedEventArgs)

    ' Show that a file has been renamed.
    Dim wct As WatcherChangeTypes = e.ChangeType
    Console.WriteLine("File {0} {2} to {1}", e.OldFullPath, e.FullPath, wct.ToString())
End Sub

注釈

このプロパティは、相対パスであっても、 で初期化された FileSystemWatcher のと同じパスを返します。

適用対象