文件 URI 的 UNC 路径

发布于 2024-10-18 23:33:30 字数 242 浏览 2 评论 0原文

如何将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

漫雪独思 2024-10-25 23:33:30

在.NET中,

let unc = @"\\egng4573\D$\CSS\Style.css"

那么

new System.Uri(unc)

应该这样做。

val it : System.Uri = file://egng4573/D$/CSS/Style.css

In .NET,

let unc = @"\\egng4573\D$\CSS\Style.css"

then

new System.Uri(unc)

should do it.

val it : System.Uri = file://egng4573/D$/CSS/Style.css
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文