如何从自定义列表sharepoint 2010检索附件文件?

时间:2011-09-08 17:01:54

标签: visual-studio-2010 sharepoint sharepoint-2010 custom-lists

我已经创建了自定义列表..并通过Visual webpart将表单数据提交到列表中。但是当我附加列表的附件时,我有疑问。 现在是从自定义列表中检索数据的时间但是如何从列表中检索附件文件并且最终用户可以轻松下载? Plz有人守护我

1 个答案:

答案 0 :(得分:0)

SPFolder folder = web.Folders["Lists"].SubFolders[list.Title].SubFolders["Attachments"].SubFolders[listitem.ID.ToString()];

然后你可以这样做:

foreach (SPFile file in folder.Files)
{
    // Do what you want to do with the file
}

希望这会对你有所帮助。

Michael's Blog