代码之家  ›  专栏  ›  技术社区  ›  Faisal

如何使用alldocs表获取SharePoint文件创建者名称?

  •  1
  • Faisal  · 技术社区  · 14 年前

    如何获取有关SharePoint文档的以下信息。

    • 创建的
    • 上次修改者

    我正在使用SharePoint内容数据库的AllDocs表,但找不到非常有用的表。

    1 回复  |  直到 14 年前
        1
  •  1
  •   Goyuix    14 年前

    using (SPSite site = new SPSite("http://your.sharepoint.server/"))
    {
        using (SPWeb web = site.OpenWeb())
        {
            SPList list = web.Lists["Documents"];
            SPListItem item = list.Items[0];
            string author = (string)item["Author"];
            DateTime modified = (DateTime)item["Modified"];
        }
    }