X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/47cb4506cc97c701639038a12f08374e8f06c41b..2bf1d2d554c33de560d6d1232c927010ac06e243:/sdk/R/man/Collection.Rd diff --git a/sdk/R/man/Collection.Rd b/sdk/R/man/Collection.Rd index 8cf29a2ea5..fbe6038664 100644 --- a/sdk/R/man/Collection.Rd +++ b/sdk/R/man/Collection.Rd @@ -23,9 +23,10 @@ Collection class provides interface for working with Arvados collections. \describe{ \item{add(content)}{Adds ArvadosFile or Subcollection specified by content to the collection.} - \item{create(fileNames, relativePath = "")}{Creates one or more ArvadosFiles and adds them to the collection at specified path.} + \item{create(files)}{Creates one or more ArvadosFiles and adds them to the collection at specified path.} \item{remove(fileNames)}{Remove one or more files from the collection.} - \item{move(content, newLocation)}{Moves ArvadosFile or Subcollection to another location in the collection.} + \item{move(content, destination)}{Moves ArvadosFile or Subcollection to another location in the collection.} + \item{copy(content, destination)}{Copies ArvadosFile or Subcollection to another location in the collection.} \item{getFileListing()}{Returns collections file content as character vector.} \item{get(relativePath)}{If relativePath is valid, returns ArvadosFile or Subcollection specified by relativePath, else returns NULL.} } @@ -36,9 +37,6 @@ Collection class provides interface for working with Arvados collections. arv <- Arvados$new("your Arvados token", "example.arvadosapi.com") collection <- Collection$new(arv, "uuid") -newFile <- ArvadosFile$new("myFile") -collection$add(newFile, "myFolder") - createdFiles <- collection$create(c("main.cpp", lib.dll), "cpp/src/") collection$remove("location/to/my/file.cpp")