leeand00
leeand00

Reputation: 26422

Web Service Call for creating a directory in SharePoint?

What webservice call creates folders/directories (and sub directories)?

I looked at the list of methods here (and in the list of calls I retrieved from SOAP_UI/Burp Proxy from the lists.aspm?wsdl file.

I'm looking to programmaticly duplicate the functionality of a user:

  1. Logging into SharePoint using the Web Interface
  2. Entering a specific list.
  3. Clicking the new folder/directory button and naming the new directory something.

Upvotes: 0

Views: 2170

Answers (1)

Marc D Anderson
Marc D Anderson

Reputation: 479

You can use Lists.UpdateListItems for this. See http://msdn.microsoft.com/en-us/library/lists.lists.updatelistitems(v=office.12).aspx for examples.

Upvotes: 1

Related Questions