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