文件 URI 的 UNC 路径
如何将 UNC 路径转换为文件 URI.. 对于我的应用程序,用户将在测试框中给出这样的 css UNC 路径:
\\egng4573\D$\CSS\Style.css
我如何将其更改为:
file:///D:/CSS/Style.css
以便 firefox 和 IE 都可以从所需的路径访问 css 并应用于它们。 请告诉....
how to convert UNC path to File URI..
For my application user will give css UNC path like this in test box :
\\egng4573\D$\CSS\Style.css
how can i change it to :
file:///D:/CSS/Style.css
so that firefox and IE both can access css from the desired path and apply on them..
please tell....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在.NET中,
那么
应该这样做。
In .NET,
then
should do it.