如何使用SharePoint 2010客户端对象模型获取阻止文件扩展名详细信息?

时间:2012-01-17 12:16:18

标签: c# sharepoint-2010

是否可以使用SharePoint客户端对象模型获取阻止文件扩展名详细信息?

2 个答案:

答案 0 :(得分:5)

这可能是您正在寻找的:

SPWebApplication theApp = SPWebApplication.Lookup(myUri);
Collection<string> blockFileTypes = theApp.BlockedFileExtensions;

答案 1 :(得分:1)

我发现无法使用SharePoint客户端对象模型获取阻止文件扩展名详细信息。如果仍然需要使用SharePoint客户端对象模型阻止某些文件扩展,则唯一的选择是维护一组自己的阻止文件扩展名,其内容与SharePoint默认阻止文件扩展名相同。

我们可以使用14 hives config文件夹中提供的docextflt.xml。