gpt4 book ai didi

sharepoint-2010 - 以编程方式在 sharepoint 2010 中获取 14 个 hive 路径

转载 作者:行者123 更新时间:2023-12-04 01:57:49 24 4
gpt4 key购买 nike

我需要使用 C#.net 中的代码获得 14 个 hive 路径。

谁能告诉我我该怎么做?

最佳答案

您可以使用 SPUtility 访问物理路径- 查看 SPWeb 的 Web 路径目的。

使用 SPUtility像这样获取Sharepoint的SetupPath:

using Microsoft.SharePoint.Utilities;
string spSetupPath = SPUtility.GetGenericSetupPath(string.Empty);
//e.g. returns "C:\Program Files\Common files\Microsoft Shared\Web Server Extensions\14
  • MSDN documentation SPUtility.GetGenericSetupPath
  • Example usages of SPUtility.GetGenericSetupPath (e.g. getting the templates dir)

  • 或者您可以使用 SPWeb 的服务器相对 URL 方法:
    using Microsoft.Sharepoint;
    string spServerURL = SPWeb.ServerRelativeUrl;

    MSDN documentation SPWeb.ServerRelativeURL

    还有一个 overview of the Sharepoint 2010 14 hive structure .

    关于sharepoint-2010 - 以编程方式在 sharepoint 2010 中获取 14 个 hive 路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4942052/

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