System.IO.RenamedEventArgs
namespace System.IO
{
public class RenamedEventArgs : FileSystemEventArgs
{
public string OldFullPath { get; }
public string OldName { get; }
public RenamedEventArgs(WatcherChangeTypes changeType, string directory, string name, string oldName);
}
}