FileSystemEventArgs.FullPath Vlastnost

Definice

Získá plně kvalifikovanou cestu ovlivněného souboru nebo adresáře.

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

Hodnota vlastnosti

Cesta k ovlivněným souborům nebo adresáři.

Příklady

Následující příklad ukazuje FullPath vlastnost. Tento příklad kódu je součástí většího příkladu FileSystemEventArgs pro třídu.

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

Poznámky

Tato vlastnost vrátí stejnou cestu, pomocí které FileSystemWatcher se inicializuje, i když se jedná o relativní cestu.

Platí pro