Sharepoint добавление элемента в библиотеку изображений - PullRequest
2 голосов
/ 27 августа 2009

Я хотел бы добавить элемент в библиотеку изображений, используя c #. Вот как я бы добавил поле к обычному элементу:

var item = list.Items.Add();
item["Title"] = "Item title";
item.Update();

Как мне добавить изображение? Изображение хранится в файловой системе, т.е. c: \ myfile.png Я полагаю, мне нужно использовать SPFile, но я не знаю, как.

Ответы [ 2 ]

3 голосов
/ 27 августа 2009

Вот метод для создания байта [] из файла

private byte [] StreamFile(string filename)
{
  FileStream fs = new FileStream(filename, FileMode.Open,FileAccess.Read);
  // Create a byte array of file stream length
  byte[] ImageData = new byte[fs.Length];
  //Read  block of bytes from stream into the byte array
  fs.Read(ImageData,0,System.Convert.ToInt32(fs.Length));
  //Close the File Stream
  fs.Close();
  return ImageData;
}

// then use the following to add the file to the list
list.RootFolder.Files.Add(fileName, StreamFile(fileName));
1 голос
/ 27 августа 2009

Это так же просто, как добавить файл в Document Lib. Ниже приведен фрагмент кода, который поможет вам это сделать. Я взял код по этой ссылке , так как там нет нужного форматирования. Я вставил сюда чистую версию

try
        {
            byte[] imageData = null;
            if (flUpload != null)
            {
                // This condition checks whether the user has uploaded a file or not
                if ((flUpload.PostedFile != null) && (flUpload.PostedFile.ContentLength > 0))
                {
                    Stream MyStream = flUpload.PostedFile.InputStream;
                    long iLength = MyStream.Length;
                    imageData = new byte[(int)MyStream.Length];
                    MyStream.Read(imageData, 0, (int)MyStream.Length);
                    MyStream.Close();
                    string filename = System.IO.Path.GetFileName(flUpload.PostedFile.FileName);                                                
                   SPPictureLibrary pic = (SPPictureLibrary)SPContext.Current.Web.Lists["Images"];//Images is the picture library name
                   SPFileCollection filecol = ((SPPictureLibrary)SPContext.Current.Web.Lists["Images"]).RootFolder.Files;//getting all the files which is in pictire library
                   filecol.Add(filename, imageData);//uploading the files to picturte library

                }
            }                
        }
        catch (Exception ex)
        {
            //handle it
        } 
...