c# 检查给定的 Sharepoint 路径是否是根 sharepoint 路径?
如何通过命令行参数检查给定的 Sharepoint 路径是否是根 Sharepoint 路径?
how can i check if a given Sharepoint path through a command line argument is a root sharepoint path?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以检查 SPWeb。 IsRootWeb 属性。
You can check SPWeb.IsRootWeb property.
如果您在服务器上运行命令行工具,您可以使用服务器端 SharePoint OM,如 Petr Abdulin 建议的:
new SPSite(url).OpenWeb().IsRootWeb
如果您在某个随机计算机上运行代码(不属于场)您必须使用 Web 服务 (http://msdn.microsoft.com/en-us/library/dd878586(v=office.12).aspx ) 或 SharePoint 的客户端 OM 2010 - http://msdn.microsoft.com/en-us/library/ee857094 .aspx。另外,在这种情况下,您必须猜测路径的哪一部分是根 Web - 我会慢慢增加 Url 的前缀,直到可以获得与该路径对应的 SharePoint Web 对象。
In case you are running command line tool on the server you can use server side SharePoint OM like Petr Abdulin suggested:
new SPSite(url).OpenWeb().IsRootWeb
If you are running code on some random machine (that is not part of the farm) you will have to use Web Services (http://msdn.microsoft.com/en-us/library/dd878586(v=office.12).aspx ) or client side OM for SharePoint 2010 - http://msdn.microsoft.com/en-us/library/ee857094.aspx. Also in this case you sort of have to guess what part of the path is root web - I'd slowly increase prefixes of the Url till I can get SharePoint Web object corresponding to that path.