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