| copy_async {s3fs} | R Documentation |
Copy files and directories
Description
s3_file_copy copies files
s3_dir_copy copies the directory recursively to the new location
Usage
s3_file_copy_async(
path,
new_path,
max_batch = fs_bytes("100MB"),
overwrite = FALSE,
...
)
s3_dir_copy_async(
path,
new_path,
max_batch = fs_bytes("100MB"),
overwrite = FALSE,
...
)
Arguments
path |
(character): path to a local directory of file or a uri. |
new_path |
(character): path to a local directory of file or a uri. |
max_batch |
(fs_bytes): Maximum batch size being uploaded with each multipart. |
overwrite |
(logical): Overwrite files if the exist. If this is |
... |
parameters to be passed to |
Value
return future object of s3_file_copy(), s3_dir_copy()
See Also
future s3_file_copy() s3_dir_copy()
[Package s3fs version 0.1.6 Index]