FileSystemEventArgs.FullPath Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient le chemin qualifié complet du fichier ou du répertoire affecté.
public:
property System::String ^ FullPath { System::String ^ get(); };
public string FullPath { get; }
member this.FullPath : string
Public ReadOnly Property FullPath As String
Valeur de propriété
Chemin d'accès du fichier ou du répertoire affecté.
Exemples
L’exemple suivant illustre la FullPath propriété . Cet exemple de code fait partie d’un exemple plus grand fourni pour la FileSystemEventArgs classe .
// 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
Remarques
Cette propriété retourne le même chemin d’accès initialisé FileSystemWatcher
avec, même s’il s’agit d’un chemin relatif.