如何在 C# 中创建正确转义的 file:// URI?
从本地路径创建完全 URL 编码的 file://
URI(即转义所有特殊字符(例如空格等))的正确方法是什么?
给定以下输入,
C:\Data\Input Document.txt
我希望得到
file:///C:/Data/Input%20Document.txt
我一直在使用的
Uri uri = new Uri(@"C:\Data\Input Document.txt", UriKind.RelativeOrAbsolute);
但是,这会导致未转义的 URI:
file:///C:/Data/Input Document.txt
What would be the correct way to create a fully URL-encoded file://
URI from a local path, i.e. where all special characters such as blanks etc are escaped?
Given the following input
C:\Data\Input Document.txt
I would like to get
file:///C:/Data/Input%20Document.txt
I've been using
Uri uri = new Uri(@"C:\Data\Input Document.txt", UriKind.RelativeOrAbsolute);
However, this results in an unescaped URI:
file:///C:/Data/Input Document.txt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它已经编码
uri.AbsolutePath 应该给你
"C:/Data/Input%20Document.txt"
it is already encoded
uri.AbsolutePath should give you
"C:/Data/Input%20Document.txt"
您是否尝试过:
new Uri(str).AbsoluteUri
不确定我是否理解您对相对 URI 的要求...
Have you tried:
new Uri(str).AbsoluteUri
Not sure I understand your requirement for relative URIs...