I have this webdav code thats creating folders in SharePoint:
HttpWebRequest request = (System.Net.HttpWebRequest)HttpWebRequest.Create(folderAddress);
request.Credentials = wsLists.Credentials; // CredentialCache.DefaultCredentials;
request.Method = "MKCOL";
response = (System.Net.HttpWebResponse)request.GetResponse();
response.Close();
How can I change the code now to upload a file now to this newly created folder. I think this is a generic webdav question, thanks