gpt4 book ai didi

r - 如何在 R 中复制带有符号链接(symbolic link)的文件夹/目录?

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

我有一个 R 函数,它使用具有相对符号链接(symbolic link)的目录(例如 ../../data)作为模板。我知道相对链接将有效,因为该函数将模板放置在已知文件结构的特定部分中。 file.copy 函数可以使用 recrusive = TRUE 复制目录,但它将符号链接(symbolic link)转换为它们指向的目录的副本。 Linux系统命令cp -r path1 path2将正确复制链接,但我想尽可能使用R函数。

如何在 R 中复制包含指向目录外部的相对符号链接(symbolic link)的目录?

我知道我可以编写自己的函数,递归地列出文件(list.dirs),查找符号链接(symbolic link)(Sys.readlink),并重新创建它们( >file.link),同时复制所有其他文件,但我想知道该功能是否已经存在。

最佳答案

我已经想出了一个解决方案,所以我想我会发布它,以防其他人可能需要这样做,而且实际上没有更传统的方法来做到这一点。我仍然有兴趣听到其他答案!

我想出了以下功能:

#===================================================================================================
#' Copy folders with links
#'
#' Copies folders like \link{\code{file.copy}} except it replicates links correctly on unix-like
#' systems.
#'
#' @param from (\code{character}) The path to the folder to be copied
#' @param to (\code{character}) Where to copy the folder to.
#'
copy_folder_with_links <- function(from, to) {
target <- file.path(to, basename(from))
if (file.exists(target)) stop(paste0("Target folder ", target, " already exists."))
# Get list of all files/folders to copy ----------------------------------------------------------
path <- data.frame(target = list.files(from, recursive = TRUE, all.files = TRUE, include.dirs = TRUE))
path$from <- file.path(from, path$target)
path$to <- file.path(to, basename(from), path$target)
# Get type of file/folders -----------------------------------------------------------------------
path$type <- factor("file", levels = c("file", "folder", "link"))
path$type[file.info(path$from)$isdir] <- "folder"
path$type[Sys.readlink(path$from) != ""] <- "link"
# Remove all files that are descendants of links -------------------------------------------------
is_child <- function(query, refs) {
sapply(refs, function(x) grepl(paste0("^", x), query) & query != x)
}
path <- path[!sapply(path$from, function(x) any(is_child(x, path$from) & path$type == "link")), ]
# Make copy --------------------------------------------------------------------------------------
invisible(lapply(path$to[path$type == "folder"], dir.create, recursive = TRUE))
invisible(file.copy(from = path$from[path$type == "file"], to = path$to[path$type == "file"]))
invisible(file.symlink(Sys.readlink(path$from[path$type == "link"]), path$to[path$type == "link"]))
}

它的工作方式类似于file.copy(选项较少),但可以正确复制链接。它的工作原理是

  1. 使用 list.files(from, recursive = TRUE, all.files = TRUE, include.dirs = TRUE) 获取要复制的所有文件/文件夹的列表
  2. 确定每个文件、文件夹还是链接
  3. 从列表中删除链接文件夹的后代(因为链接后跟 list.files)
  4. 复制文件夹、文件和链接(按顺序)

关于r - 如何在 R 中复制带有符号链接(symbolic link)的文件夹/目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30065422/

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