gpt4 book ai didi

文件 Uri 方案和相关文件

转载 作者:行者123 更新时间:2023-12-03 05:43:51 26 4
gpt4 key购买 nike

假设 uri 的方案是“file”。还假设路径以“.”开头

示例路径是“./.bashrc”。 Fulluri 看起来怎么样? “file://./.bashrc”对我来说似乎很奇怪。

最佳答案

简而言之,文件 URL 的形式为:

file://localhost/absolute/path/to/file [ok]

或者您可以省略主机(但不省略斜杠):

file:///absolute/path/to/file [ok]

但不是这个:

file://file_at_current_dir [no way]

也不是这个:

file://./file_at_current_dir [no way]

我刚刚通过 Python 的 urllib2.urlopen() 确认了这一点

更多详细信息来自http://en.wikipedia.org/wiki/File_URI_scheme :

"file:///foo.txt" is okay, while "file://foo.txt" is not,
although some interpreters manage to handle the latter

关于文件 Uri 方案和相关文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7857416/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com