I am trying to use sharepoint webservice to rename a folder. I tried the below code to create a folder which works fine. But I am unable to find the webmethod related to renaming folder. Any help would be highly appreciated.
Web Service used http://myservicelink:100/_vti_bin/Dws.asmx
Dws objDws = new Dws();
objDws.Credentials = System.Net.CredentialCache.DefaultCredentials;
string strResult = objDws.CreateFolder("MyMainFolders/MyFolder");
Console.WriteLine(strResult);
Console.ReadLine();