X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c0a5fa033d0a9bfbeab001f287969756e9e1d16d..3fa6aa4043286ad61e5f29c136d3cc2942e8750d:/sdk/R/man/Subcollection.Rd diff --git a/sdk/R/man/Subcollection.Rd b/sdk/R/man/Subcollection.Rd index df0970b30f..0b27a8bc43 100644 --- a/sdk/R/man/Subcollection.Rd +++ b/sdk/R/man/Subcollection.Rd @@ -5,7 +5,7 @@ \title{Subcollection} \description{ Subcollection class represents a folder inside Arvados collection. -It is essentially a composite of ArvadosFiles and other Subcollections. +It is essentially a composite of arvadosFiles and other subcollections. } \section{Usage}{ @@ -29,7 +29,8 @@ It is essentially a composite of ArvadosFiles and other Subcollections. \item{get(relativePath)}{If relativePath is valid, returns ArvadosFile or Subcollection specified by relativePath, else returns NULL.} \item{getFileListing()}{Returns subcollections file content as character vector.} \item{getSizeInBytes()}{Returns subcollections content size in bytes.} - \item{move(newLocation)}{Moves subcollection to a new location inside collection.} + \item{move(destination)}{Moves subcollection to a new location inside collection.} + \item{copy(destination)}{Copies subcollection to a new location inside collection.} } } @@ -43,5 +44,6 @@ myFolder$get("myFile") myFolder$remove("myFile") myFolder$move("newLocation/myFolder") +myFolder$copy("newLocation/myFolder") } }