How do you programmatically upload a file to a document library in sharepoint?

I am currently making a Windows application using C# that will add documents to a document library list.

link|improve this question

feedback

2 Answers

up vote 16 down vote accepted

You can upload documents to SharePoint libraries using the Object Model or SharePoint Webservices.

Upload using Object Model:

        String fileToUpload = @"C:\YourFile.txt";
        String sharePointSite = "http://yoursite.com/sites/Research/";
        String documentLibraryName = "Shared Documents";

        using (SPSite oSite = new SPSite(sharePointSite))
        {
            using (SPWeb oWeb = oSite.OpenWeb())
            {
                if (!System.IO.File.Exists(fileToUpload))
                    throw new FileNotFoundException("File not found.", fileToUpload);                    

                SPFolder myLibrary = oWeb.Folders[documentLibraryName];

                // Prepare to upload
                Boolean replaceExistingFiles = true;
                String fileName = System.IO.Path.GetFileName(fileToUpload);
                FileStream fileStream = File.OpenRead(fileToUpload);

                // Upload document
                SPFile spfile = myLibrary.Files.Add(fileName, fileStream, replaceExistingFiles);

                // Commit 
                myLibrary.Update();
            }
        }
link|improve this answer
1  
Note that this code leaks the new SPSite. You should never chain new SPSite(url).OpenWeb(). – dahlbyk Jan 22 '09 at 23:04
Nice catch. I've edited the code to dispose the SPWeb. I've seen some blogs asserting that if you call SPSite.Dispose, it will automatically call Dispose on all the contained SPWebs (not the case in WSS 2).Anyway, I'll stick to the MSDN recommendation which is to dispose all the SPWebs. – Henrique Zacchi Jan 23 '09 at 10:55
I never did anything with Sharepoint. What do I have to install and set a reference to to be able to define a variable of type "SPSite?" I had some success copying a file to a sharepoint site by programmatically creating a Web Folder and saving to it, but I run into issues when the word doc has missing sharepoint properties – Chad Jun 4 '09 at 4:29
Chadworthington, SPSite is part of Microsoft.SharePoint namespace, so you need to add reference to Microsoft.SharePoint.dll. Assuming you are developing on the Server, the dll can be found here: C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\ISAPI\Microsoft.SharePoint.dll – Henrique Zacchi Jun 4 '09 at 9:23
Wait a sec... this code will only work in a box joined to the farm, correct? In any other box, it needs to use msdn.microsoft.com/en-us/library/ee857094.aspx – Ariel May 5 '11 at 2:35
show 1 more comment
feedback

As an alternative to the webservices, you can use the put document call from the FrontPage RPC API. This has the additional benefit of enabling you to provide meta-data (columns) in the same request as the file data. The obvious drawback is that the protocol is a bit more obscure (compared to the very well documented webservices).

For a reference application that explains the use of Frontpage RPC, see the SharePad project on CodePlex.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.