我试图将文件附加到我们的sharepoint列表中。
我可以通过编程方式创建列表项,但我无法附加附件。 要么它给了我一个401不允许的错误(这不能因为我对该列表有完全访问权限),或者executeQuery会一直挂起直到超时。
这是我当前的代码:( WPF应用程序)
ClientContext clientContext = new ClientContext("http://<SITE-URL>/sites/Team-Place/<TeamPlace-ID>/");
clientContext.RequestTimeout = int.MaxValue;
FileStream sr = new FileStream("Test.pdf", FileMode.Open);
byte[] contents = new byte[sr.Length];
sr.Read(contents, 0, (int)sr.Length);
SP.List List = clientContext.Web.Lists.GetByTitle("<List Title>");
if (List != null)
{
CamlQuery camlQuery = CamlQuery.CreateAllItemsQuery();
SP.ListItemCollection Collection = List.GetItems(camlQuery);
clientContext.Load(List);
clientContext.Load(List.Fields);
clientContext.Load(Collection);
clientContext.ExecuteQuery();
foreach (var x in List.Fields)
Debug.AppendText(x.InternalName + "\n");
ListItemCreationInformation creationInfo = new ListItemCreationInformation();
SP.ListItem Item = List.AddItem(creationInfo);
Item["Title"] = "Test";
Item["Modell"] = "Test";
Item["Seriennummer"] = "testserial";
Item["Ger_x00e4_te_x002d_Typ"] = "Laptop";
Item.Update();
clientContext.ExecuteQuery();
clientContext.Load(Item);
clientContext.ExecuteQuery();
var attInfo = new AttachmentCreationInformation();
attInfo.FileName = "Test.pdf";
attInfo.ContentStream = sr;
var att = Item.AttachmentFiles.Add(attInfo);
Item.Update();
clientContext.Load(att);
clientContext.Load(Item);
clientContext.ExecuteQuery();
//System.Diagnostics.Debug.WriteLine(att.ServerRelativeUrl);
Item.Update();
clientContext.ExecuteQuery();
/*
* Not working pice of S#@*
string attachmentPath = string.Format("/Lists/Inventur_MOBI/Attachments/{0}/{1}", Item.Id, "Test.pdf");
SP.File.SaveBinaryDirect(clientContext, attachmentPath, sr, false);
*/
}
else
Debug.AppendText("List not found");
我做了&#34;审查&#34;一些事情。 SaveBinardDirect方法给了我一个不允许的401,附件给出了超时。 我们有一个Sharepoint 2013。
有人有想法吗?
此致 BlueFire
答案 0 :(得分:1)
您的代码有两个问题。
首先,使用FileStream
读取文件,然后将其与AttachmentCreationInformation
对象一起使用。将其更改为:
byte[] contents = null;
using (FileStream sr = new FileStream("Test.pdf", FileMode.Open))
{
contents = new byte[sr.Length];
sr.Read(contents, 0, (int)sr.Length);
}
//...
using (MemoryStream ms = new MemoryStream(contents))
{
var attInfo = new AttachmentCreationInformation();
attInfo.FileName = "Test.pdf";
attInfo.ContentStream = ms;
// ...
}
其次,在您创建新的ListItem
对象之后,再次检索它以保护您免受保存冲突的影响。使用:
ListItem newItem = List.AddItem(creationInfo);
newItem["Title"] = "Test";
// ...
newItem.Update();
clientContext.Load(newItem, i => i.Id);
clientContext.ExecuteQuery();
var item = List.GetItemById(newItem.Id);
using (MemoryStream ms = new MemoryStream(contents))
{
// ...
var att = item.AttachmentFiles.Add(attInfo);
item.Update();
clientContext.ExecuteQuery();
}
哦,对于401 Unathorized,您需要将凭据传递给ClientContext:
clientContext.Credentials = new NetworkCredential("user", "password", "domain");