gpt4 book ai didi

c# - CAML 查询仅选择顶级文件夹

转载 作者:太空狗 更新时间:2023-10-29 23:47:59 24 4
gpt4 key购买 nike

我想使用 CrossListQueryCache 选择文档库的文件夹列表(没有子文件夹,不是递归的)。

一切正常,只是我收到了列表中的所有文件夹和子文件夹,而不仅仅是第一级文件夹。我需要在下面的代码中更改什么,以便只返回第一级文件夹而不返回它们的子文件夹和子子文件夹等...

string query = string.Empty;
string websQuery = string.Format("<Webs Scope=\"{0}\"/>", "None");
string lists = "<Lists ServerTemplate=\"101\"" + " ><List ID=\"" + listid + "\" /></Lists>";
bool useList = true;
string relativeUrl = this.GetRelativeUrl();
query = string.Format("<Where><Eq><FieldRef Name='FSObjType' /><Value Type='LookUp'>1</Value></Eq></Where>", relativeUrl);

CrossListQueryInfo info = new CrossListQueryInfo();
info.Lists = lists;
info.Webs = websQuery;
info.Query = query;
info.ViewFields = "<FieldRef Name=\"FileLeafRef\"/>";
info.WebUrl = web.ServerRelativeUrl;
CrossListQueryCache cache = new CrossListQueryCache(info);
SiteDataResults sd = cache.GetSiteDataResults(site, true);

最佳答案

将 SPQuery.ViewAttributes 与不同于“递归”的“作用域”一起使用:
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spquery.viewattributes.aspx

如果您只想显示文件夹或不显示文件夹,那么您可以添加有关 ContentType 的信息,就像这里(Drax 的回答):
CAML queries: how to filter folders from result set?

关于c# - CAML 查询仅选择顶级文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6845506/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com