Sharepoint 2010 - 客户端对象模型将内容上传到文档库

发布于 2024-10-22 11:52:51 字数 264 浏览 3 评论 0原文

我有以下要求:

我创建了一个嵌入 Sharepoint 应用程序页面中的 Flash 应用程序。在 Flash 应用程序中,我必须将文本(如果不提示用户,我无法在客户端创建文件,因此我只需以纯文本形式上传内容)上传到用户选择的文档库。

上传文本(作为 .url 文件)时,我必须将浏览器重定向到与库关联的编辑表单(或更具体地说与新项目的内容类型)。

如何使用客户端对象模型将内容(纯文本)作为新文档上传到文档库?

亲切的问候,

卡雷尔

I have the following requirement:

I have created a Flash application that is embedded in a Sharepoint Application Page. In the Flash application I have to upload text (I cannot create a file on the client side without prompting the user, so I just have to upload the content in plain text) to a document library of the user's choice.

When the text is uploaded (as a .url file), I have to redirect the browser to the edit form that is associated with the library (or more specific with the content type of the new item).

How can I upload content (plain text) as a new document to a Document library using the Client Object Model?

Kind regards,

Karel

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁虫ゝ 2024-10-29 11:52:51

您可以使用客户端对象模型的 FileCreationInformation 类将文件上传到 SharePoint,该类的 Content 属性是字节数组。

你可以像这样使用它:

ClientContext clientContext = new ClientContext(webUrl);
Web web = clientContext.Web;
List documentLibrary = web.Lists.GetByTitle("Documents");

FileCreationInformation newFile = new FileCreationInformation();
newFile.Content = System.IO.File.ReadAllBytes(localFile);
newFile.Url = System.IO.Path.GetFileName(localFile);

Microsoft.SharePoint.Client.File uploadFile = documentLibrary.RootFolder.Files.Add(newFile);

You can upload files to SharePoint using the Client Object Model's FileCreationInformation class which has a Content property that is a byte array.

You might use it like so:

ClientContext clientContext = new ClientContext(webUrl);
Web web = clientContext.Web;
List documentLibrary = web.Lists.GetByTitle("Documents");

FileCreationInformation newFile = new FileCreationInformation();
newFile.Content = System.IO.File.ReadAllBytes(localFile);
newFile.Url = System.IO.Path.GetFileName(localFile);

Microsoft.SharePoint.Client.File uploadFile = documentLibrary.RootFolder.Files.Add(newFile);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文