Uri.LocalPath 定义用于非本地路径做什么?
Uri.LocalPath 的文档没有说如果您向其提供非本地路径(如 http://stackoverflow.com/),会发生什么。 有谁知道有一个来源提供了如何处理此问题的官方规范?
我想知道它可能有什么样的陷阱和极端情况,所以我不能确定仅仅通过尝试就可以得到正确的结果。
(或者有人知道一种可靠的方法来检查 Uri 是否是本地的?特别是,我可以通过文件系统访问它吗)
The docs for Uri.LocalPath don't say what happens if you feed it a non local path like http://stackoverflow.com/
. Does anyone know of a source that gives the official spec for how it handle this?
I'm wanting to know what kind of gotchas and corner cases it might have so I can't be sure I've got thing right by just trying things.
(alternately does anyone known of a robust way to check if a Uri is or is not local? Particularly, is it something I can access via the file-system)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在不是“文件名”的 Uri 上使用它就违反了先决条件。 因此,在我看来,它可以返回任何它想要的东西。
要查看 Uri 是否是文件名,请使用 Uri.IsFile< /a>
You're violating the pre-conditions by using it on a Uri that is not a "file name". Thus, as I see it, it can return whatever it pleases.
To see if a Uri is a filename, use Uri.IsFile