private void VNotifier_DeleteCompleted(object sender, SingleNodeOperationEventArgs e)
{
if ((!e.ResultNode.Exists()) && (!e.ResultNode.Name.StartsWith(".")) && ((Rebex.Net.Servers.ServerSession.Current.UserName == "XYZ")))
{
var vL4P = new Rebex.IO.FileSystem.FileNode(".ZZZ." + e.ResultNode.Name, e.ResultNode.Parent) { Context = e.ResultNode };
if (vL4P.Exists())
{
vL4P.Delete();
}
vL4P = null;
}
}