Sharepoint 将项目添加到图片库中
我想使用 c# 将项目添加到图片库中。这就是我向普通项目添加字段的方式:
var item = list.Items.Add();
item["Title"] = "Item title";
item.Update();
我将如何添加图片?图片存储在文件系统上,即 c:\myfile.png 我想我需要使用 SPFile 但不知道如何使用。
I would like to add an item into a picture Library using c#. This is how I would add a field to a normal item:
var item = list.Items.Add();
item["Title"] = "Item title";
item.Update();
How would I go about adding the picture? The picture is stored on the file system i.e. c:\myfile.png I iamgine I need to use SPFile but not sure how.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是从文件创建 byte[] 的方法
Here's a method to create a byte[] from the file
就像将文件添加到文档库一样简单。下面是可以帮助您完成此操作的代码片段。我已从此链接 由于格式不正确,我在这里粘贴了一个干净的版本
It is as simple as adding a file to the Document Lib. Below is the code snippet that will help you do it. I have take the code from the this link as the formatting is not proper there I pasted a clean version here