/// <summary> /// 获取所有文件结果数量 /// </summary> /// <returns>结果数量</returns> public static uint CF_GetTotFileResults() { try { if (CP_Platform == EPlatform.X86) { return(ModEverything32.Everything_GetTotFileResults()); } else { return(ModEverything64.Everything_GetTotFileResults()); } } catch (Exception ex) { throw ex; } }