如何获取SharePoint中的所有网站和子网站并访问图像库/列表?
如何获取SharePoint中的所有网站和子网站并访问图像库/列表?
我期待通过 SharePoint 对象模型实现这一目标。在每个站点或子站点内,我想访问图像库/列表,
访问此列表后,我该如何将“所选项目所需的内容批准”选项从“是”设置为“否”?
How to get all sites and sub-sites in SharePoint and access an image library/list?
I am looking forward to achieve this via the SharePoint object model. Inside each site or subsite I want to access an image library/list,
After getting to this list, how do I set the option of 'Required Content Approval for Selected Items' from 'Yes' to 'No'?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
SPFarm
对象获取所有Web应用程序,然后使用SPWebApplication
获取所有站点集合,然后使用SPSite
获取所有Web。您必须循环遍历所有三个网站才能获取网站集下的所有网站。如果您想查找 spweb 下的子站点,请递归调用所有 spweb,直到在每个 spweb 的 spweb 下找不到任何网站为止。
Use the
SPFarm
object to get all web applications then useSPWebApplication
to get all sitecollection and then useSPSite
to get all Webs.You have to loop through all three to get all sites under the site collection. If you want to find subsites under spweb please call all spwebs recursively until you don't find any webs under spweb for each spweb.