RenamedEventArgs.OldFullPath 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 précédent chemin d'accès qualifié complet du fichier ou du répertoire affecté.
public:
property System::String ^ OldFullPath { System::String ^ get(); };
public string OldFullPath { get; }
member this.OldFullPath : string
Public ReadOnly Property OldFullPath As String
Valeur de propriété
Précédent chemin d'accès qualifié complet du fichier ou du répertoire affecté.
Exemples
L’exemple suivant illustre la OldFullPath propriété . Cet exemple de code fait partie d’un exemple plus grand fourni pour 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
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.