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.
|
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. |
||||
|
|
|
You can upload documents to SharePoint libraries using the Object Model or SharePoint Webservices. Upload using Object Model:
|
|||||||||||||
|
|
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. |
|||
|
|
|
if you get this error "Value does not fall within the expected range" in this line:
use instead this to fix the error:
Use always URl to get Lists or others because they are unique, names are not the best way ;) |
|||
|
|
|
|||
|
|