FileSystemEventArgs.FullPath Propiedad

Definición

Obtiene la ruta de acceso completa del directorio o el archivo afectado.

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

Valor de propiedad

Ruta de acceso del directorio o el archivo afectado.

Ejemplos

En el ejemplo siguiente se muestra la FullPath propiedad . Este ejemplo de código es parte de un ejemplo más grande proporcionado para la clase 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

Comentarios

Esta propiedad devuelve la misma ruta de acceso con la que FileSystemWatcher se inicializa, aunque sea una ruta de acceso relativa.

Se aplica a