CAML获取SharePoint文档库中除文件夹外所有文档
时间:2014-04-27 17:07:32
收藏:0
阅读:520
方法一:
|
1
2
3
4 |
<QueryOptions> <ViewAttributes Scope="Recursive"
/> </QueryOptions> </query> |
方法二:
|
1
2
3
4
5 |
<View Scope="RecursiveAll"> <Query> <Where>...</Where> </Query></View> |
评论(0)