X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5c4d9d38dcee73a7ffb6221c80f707c3924da64f..74cffe96768727e8b727cdb54358729c91bec130:/sdk/R/README.Rmd diff --git a/sdk/R/README.Rmd b/sdk/R/README.Rmd index be34b2fdb1..001a3efc13 100644 --- a/sdk/R/README.Rmd +++ b/sdk/R/README.Rmd @@ -259,6 +259,28 @@ subcollection$move("newDestination/folder") Make sure to include new file name in destination. In second example file$move("newDestination/") will not work. +* Copy file or folder inside collection: + +Directley from collection + +```{r} +collection$copy("folder/file.cpp", "file.cpp") +``` + +Or from file + +```{r} +file <- collection$get("location/to/my/file.cpp") +file$copy("destination/file.cpp") +``` + +Or from subcollection + +```{r} +subcollection <- collection$get("location/to/folder") +subcollection$copy("destination/folder") +``` + #### Working with Aravdos projects * Get a project: