uri 的相对路径
我有一个 Uri 对象 - 它的什么属性会给我相对路径?我如何使用此 Uri 破译文件的相对路径。我正在用 c# 编码。
I have a Uri object - what property of it will give me the relative path? Of how can I decipher the relative path the file with this Uri. I am coding in c#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Uri.MakeRelativeUri 方法(系统)
直接 MSDN:
此外,如果您总是从域的根目录查找相对路径,您还可以使用 myUri.AbsolutePath
这是 Uri 调试视图的屏幕截图,其中包含两个示例使用以下 Uri 对象
use the Uri.MakeRelativeUri Method (System)
straight from MSDN:
furthermore, if you are always looking for the relative path from the root of the domain you could also use
myUri.AbsolutePath
Here's a screenie of the Uri debug view with two examples of
MakeRelativeUri
at the bottom using the following Uri objects您可以向 Uri 添加相对路径,如下所示。
You can add a relative path to the Uri like below.