gpt4 book ai didi

R下载.文件错误无法打开URl

转载 作者:行者123 更新时间:2023-12-03 21:00:36 24 4
gpt4 key购买 nike

temp <- tempfile()
download.file("file://connect/me/test.gz",temp)

该 url 存在是因为我可以将它放在我的浏览器中,但是当我运行该代码时出现错误:

  Error in download.file("file://connect/me/test.gz",  : 
cannot open URL "file://connect/me/test.gz", reason 'No such file or directory'

有什么办法可以下载文件并解压缩吗?

更新

我在这里找到了一些关于 fil://的信息 https://stat.ethz.ch/R-manual/R-devel/library/base/html/connections.html :

“关于 file://URL 的注释。最通用的形式(来自 RFC1738)是 file://host/path/to/file,但 R 只接受带有引用本地机器的空主机字段的形式”

“在这种形式中,路径是相对于文件系统的根目录,而不是 Windows 概念。Windows 上的标准形式是 file:///d:/R/repos: 用于与早期版本的 R 和 Unix 兼容版本,任何其他形式都被解析为 R 作为 file://加上 path_to_file。此外,即使 RFC1738 不允许,路径中也接受反斜杠。”

这是什么意思?

类型

最佳答案

我想通了。我必须将驱动器“B”映射到该文件夹​​,然后

temp <- tempfile()
download.file("file:///B:/me/test.gz",temp,method="internal")

关于R下载.文件错误无法打开URl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26788146/

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