s3_file_copy
copies files
s3_dir_copy
copies the directory recursively to the new location
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,
...
)
return future
object of s3_file_copy()
, s3_dir_copy()
(character): path to a local directory of file or a uri.
(character): path to a local directory of file or a uri.
(fs_bytes): Maximum batch size being uploaded with each multipart.
(logical): Overwrite files if the exist. If this is FALSE
and the file exists an error will be thrown.
parameters to be passed to s3_put_object
future
s3_file_copy()
s3_dir_copy()