gpt4 book ai didi

r - 将相对路径转换为绝对路径

转载 作者:行者123 更新时间:2023-12-04 14:09:24 27 4
gpt4 key购买 nike

是否有一种很好的内置方法可以将 R 中的相对文件路径转换为绝对路径,并且不需要文件系统上实际存在的路径?
两者 base::normalizePath也不是 tools::file_path_as_absolute正在查找文件系统中的物理路径,因此当路径不存在时它们都会失败:

> normalizePath('foo')
[1] "foo"
Warning message:
In normalizePath("foo") : path[1]="foo": No such file or directory

> tools::file_path_as_absolute('foo')
Error in tools::file_path_as_absolute("foo") : file 'foo' does not exist
我可以编写以下函数,它在类 Unix 系统上做得不错,但不能跨平台到 Windows 世界:
rel_to_abs <- function(x) {
# Convert `x` to absolute path - does not consult the file system
ifelse(grepl('^/', x), x, file.path(getwd(), x))
}
如果我遗漏了核心库中的某些内容,我很乐意被指出。

最佳答案

您可以使用 getAbsolutePathR.utils包裹:

> R.utils::getAbsolutePath("foo")
[1] "/home/stla/Work/R/foo"

关于r - 将相对路径转换为绝对路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65621434/

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