RenamedEventArgs.OldFullPath Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém o caminho anterior totalmente qualificado do diretório ou do arquivo afetado.
public:
property System::String ^ OldFullPath { System::String ^ get(); };
public string OldFullPath { get; }
member this.OldFullPath : string
Public ReadOnly Property OldFullPath As String
Valor da propriedade
O caminho totalmente qualificado anterior do arquivo ou diretório afetado.
Exemplos
O exemplo a seguir demonstra a OldFullPath propriedade . Este exemplo de código faz parte de um exemplo maior fornecido para a 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
Comentários
Essa propriedade retorna o mesmo caminho com o qual FileSystemWatcher
é inicializada, mesmo que seja um caminho relativo.