我正在尝试获取 SharePoint 上文件的名称属性?
如果我尝试获取我创建的列的元数据,我可以使用此方法获取此数据
文件是 SPFile。
if (file.GetProperty("DocId") != null)
{
docId = file.GetProperty("DocId").ToString();
}
但是当我试图得到名字时
if (file.GetProperty("Name") != null)
{
docId = file.GetProperty("Name").ToString();
}
else {...}
它转到 else 语句。
我哪里错了?
谢谢。