/// <summary> /// 删除Everything软件运行记录 /// </summary> /// <returns>执行结果</returns> public static bool CF_DeleteRunHistory() { try { if (CP_Platform == EPlatform.X86) { return(ModEverything32.Everything_DeleteRunHistory()); } else { return(ModEverything64.Everything_DeleteRunHistory()); } } catch (Exception ex) { throw ex; } }