RenamedEventArgs.OldFullPath Proprietà

Definizione

Ottiene il percorso completo precedente del file o della directory interessata.

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

Valore della proprietà

Percorso completo precedente del file o della directory interessata.

Esempio

Nell'esempio seguente viene illustrata la OldFullPath proprietà . Questo esempio di codice fa parte di un esempio più ampio fornito per la RenamedEventArgs classe .

//  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

Commenti

Questa proprietà restituisce lo stesso percorso FileSystemWatcher inizializzato con , anche se si tratta di un percorso relativo.

Si applica a