将 URI 路径转换为 .NET 中的相对文件系统路径
如何将绝对或相对 URI 路径(例如 /foo/bar.txt
)转换为(分段)相应的相对文件系统路径(例如 foo\bar.txt
) )在.NET 中?
我的程序不是 ASP.NET 应用程序。
How do I convert an absolute or relative URI path (e.g. /foo/bar.txt
) to a (segmentwise) corresponding relative file system path (e.g. foo\bar.txt
) in .NET?
My program is not an ASP.NET application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您是否已经尝试过
Server.MapPath
?或
Uri.LocalPath
属性?类似于以下内容:Have you already tried
Server.MapPath
?or
Uri.LocalPath
property? Something like following :我想出了这种方法,可以从相对或绝对 URI 和基本路径生成完整的绝对文件系统路径。
使用:
来自相对 URI:
来自绝对 URI:
I figured out this way to produce a full absolute file system path from a relative or absolute URI and a base path.
With:
From a relative URI:
From an absolute URI:
您可以执行以下操作:
有关详细信息,请参阅 MSDN
You can do this:
See MSDN for details
由于后端或框架的更改,并非所有人都可以访问 server.MapPath,并且其中之一可能会像这样,
您只需执行以下操作:
Not all have access to server.MapPath due to backend or framework changes, and there are lot's of way one of them is could be like this
after this you just do: