当前位置:  开发笔记 > 后端 > 正文

Sharepoint API - 如何从ASP.NET Web应用程序将文件上载到Sharepoint Doc Library

如何解决《SharepointAPI-如何从ASP.NETWeb应用程序将文件上载到SharepointDocLibrary》经验,为你挑选了1个好方法。

我是Sharepoint Server的新手,我们是否有任何实用程序可以从ASP.NET应用程序上传文件.

你能提供宝贵的答案吗?



1> Ganesha..:

您可以编写一些自定义代码来执行此操作.如果您位于同一服务器上或使用WebServices,则可以使用SharePoint API

下面是示例代码,假设您知道文档库的URL并且您正在将文档上载到根文件夹.您必须添加Microsoft.SharePoint.dll作为ASP.NET项目的参考

        using (SPSite siteCollection = new SPSite(url))
        {
            using (SPWeb spWeb = siteCollection.OpenWeb())
            {
                SPList spList = spWeb.GetList(url);

                string fileName = "XXXX";
                FileStream fileStream = null;
                Byte[] fileContent = null;

                try
                {
                    string docPath = XXXX; //physical location of the file
                    fileStream = File.OpenRead(docPath + fileName);
                    fileContent = new byte[Convert.ToInt32(fileStream.Length)];
                    fileStream.Read(fileContent, 0, Convert.ToInt32(fileStream.Length));

                    spList.RootFolder.Files.Add(spList.RootFolder.Url + "/" + fileName, fileContent, true);
                    spList.Update();
                }
                catch(Exception ex)
                {

                }
                finally
                {
                    if (fileStream != null)
                    {
                        fileStream.Close();
                    }
                }
            }
        }

推荐阅读
oDavid_仔o_880
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有