是否可以使用 c# 将文件上传到 SharePoint online 中的自定义列表
Is it possible to upload files to a custom list in SharePoint online using c#
我目前正在创建可以将文件上传到 SharePoint 自定义列表的应用程序,这可能吗?如果可以,有人可以分享一个 link 我可以使用和学习的地方吗?
注意:我想将文件上传到自定义列表,而不是文档库
文件可以作为列表项的附件。
List list = context.Web.Lists.GetByTitle("Listtitle");
ListItem item = list.GetItemById(itemid);
var attachment = new AttachmentCreationInformation();
string filePath = @"C:\Lee\template.xlsx";
attachment.FileName = Path.GetFileName(filePath);
attachment.ContentStream = new MemoryStream(System.IO.File.ReadAllBytes(filePath));
Attachment att = item.AttachmentFiles.Add(attachment);
context.Load(att);
context.ExecuteQuery();
我目前正在创建可以将文件上传到 SharePoint 自定义列表的应用程序,这可能吗?如果可以,有人可以分享一个 link 我可以使用和学习的地方吗?
注意:我想将文件上传到自定义列表,而不是文档库
文件可以作为列表项的附件。
List list = context.Web.Lists.GetByTitle("Listtitle");
ListItem item = list.GetItemById(itemid);
var attachment = new AttachmentCreationInformation();
string filePath = @"C:\Lee\template.xlsx";
attachment.FileName = Path.GetFileName(filePath);
attachment.ContentStream = new MemoryStream(System.IO.File.ReadAllBytes(filePath));
Attachment att = item.AttachmentFiles.Add(attachment);
context.Load(att);
context.ExecuteQuery();