使用SharePoint中的URL杂散性
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用SharePoint中的URL杂散性相关的知识,希望对你有一定的参考价值。
string root = "/"; string path = "/sub"; string doc = "/sub/default.aspx"; Console.WriteLine(String.Format("SPUrlUtility.CombineUrl(root, path): {0}", SPUrlUtility.CombineUrl(root, path))); // "/sub" Console.WriteLine(String.Format("SPUrlUtility.CombineUrl(root, doc): {0}", SPUrlUtility.CombineUrl(root, doc))); // "/sub/default.aspx" Console.WriteLine(String.Format("SPUrlUtility.CombineUrl(path, doc): {0}", SPUrlUtility.CombineUrl(path, doc))); // "/sub/default.aspx" Console.WriteLine(String.Format("SPUrlUtility.CombineUrl(path, doc): {0}", SPUrlUtility.CombineUrl("/", "/_layouts/mypage.aspx"))); // "/_layouts/mypage.aspx"
以上是关于使用SharePoint中的URL杂散性的主要内容,如果未能解决你的问题,请参考以下文章
除非用户第一次连接到 Sharepoint 服务器,否则将文件复制到 Sharepoint-share 失败
Powershell PnP - 在线登录 Sharepoint 并下载文件