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.
| ||||
|
feedback
|
|
You can upload documents to SharePoint libraries using the Object Model or SharePoint Webservices. Upload using Object Model:
| |||||||||||||
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. | |||
|
feedback
|