bkietz commented on a change in pull request #8101:
URL: https://github.com/apache/arrow/pull/8101#discussion_r483012720
##########
File path: r/R/filesystem.R
##########
@@ -280,6 +280,21 @@ SubTreeFileSystem$create <- function(base_path, base_fs) {
shared_ptr(SubTreeFileSystem, xp)
}
+#' Copy files between FileSystems
+#'
+#' @param src_fs The FileSystem from which files will be copied.
+#' @param src_paths The paths of files to be copied.
+#' @param dest_fs The FileSystem into which files will be copied.
+#' @param dest_paths Where the copied files should be placed.
+#' @param chunk_size The maximum size of block to read before flushing
+#' to the destination file. A larger chunk_size will use more memory while
+#' copying but may help accommodate high latency FileSystems.
+#' @param use_threads Whether to copy files in parallel.
Review comment:
will do
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]