0

添付ファイルとして任意の種類のファイルを含めることができるSharePointカレンダーイベントがあります。ファイルの内容にアクセス/ダウンロードする方法はありますか?これらのファイルのチェックサムを計算する必要があります。

4

1 に答える 1

3
string siteURL = "http://yourserver/yourpathtothesite";
using (SPSite site = new SPSite(siteURL))
{
    using (SPWeb web = site.OpenWeb())
    {
        string listName = "Events";
        SPList calendarList = web.Lists[listName];

        // get whatever item you are interested in
        SPListItem item = calendarList.GetItemById(1);

        foreach (String attachmentname in item.Attachments)
        {
            String attachmentAbsoluteURL = item.Attachments.UrlPrefix + attachmentname;

            // To get the SPSile reference to the attachment just use this code
            SPFile attachmentFile = web.GetFile(attachmentAbsoluteURL);

            // To read the file content simply use this code
            Stream stream = attachmentFile.OpenBinaryStream();
            StreamReader reader = new StreamReader(stream);
            String fileContent = reader.ReadToEnd();
        }

    }
}

出典:http ://www.dotnetking.com/TechnicalComments.aspx?LogID = 352

于 2009-09-17T18:22:38.817 に答える