Bagikan melalui


FileSystemEventArgs.FullPath Properti

Definisi

Mendapatkan jalur yang sepenuhnya memenuhi syarat dari file atau direktori yang terpengaruh.

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

Nilai Properti

Jalur file atau direktori yang terpengaruh.

Contoh

Contoh berikut menunjukkan FullPath properti . Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk FileSystemEventArgs kelas .

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

Keterangan

Properti ini mengembalikan jalur yang sama yang FileSystemWatcher diinisialisasi, bahkan jika itu adalah jalur relatif.

Berlaku untuk