如何通过c#代码在sharepoint位置创建文件。 我从webservic获取数据,我想为此创建一个excel文件。
我试过这段代码:
string path = "http://matrix-ab:7001/matrix/common/Servlet.jsp?service=true&cmd=abcd&sk=gfdgsfdgsfdgsfdgsfdgsdfSEVnR0lWMEsdvfds0&ObjName=";
string destFilename = @"http://test.net/excel/docs/test.aspx/abc.xlsm";
System.Net.WebClient client = new System.Net.WebClient();
WebDownload w = new WebDownload(3600000);
UTF8Encoding objUTF8 = new UTF8Encoding();
byte[] data = w.DownloadData(path + value);
File.WriteAllBytes(destFilename, data);
w = null;
objUTF8 = null;
Console.WriteLine("Completed");
错误:
URI formats are not supported.
我正在获得我保持优秀的价值观。如果我将路径保留为本地或共享位置,那么它可以工作,但它不适用于sharepoint位置。