public static bool DeleteOrArchive(ISpyControl ctrl, string filePath, bool archive) { if (!archive || filePath.EndsWith(".jpg")) { return(Delete(filePath)); } Helper.ArchiveAndDelete(ctrl, filePath); return(true); }