[ARVADOS] updated: 1.1.2-186-g1499d39
Git user
git at public.curoverse.com
Fri Jan 19 11:41:48 EST 2018
Summary of changes:
sdk/R/README | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
via 1499d395e3d2ef62334e349f7bc4ae2cfd0418aa (commit)
from 2d451314078739464fbb754791bf6f1d4a8fad1c (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 1499d395e3d2ef62334e349f7bc4ae2cfd0418aa
Author: Fuad Muhic <fmuhic at capeannenterprises.com>
Date: Fri Jan 19 17:40:57 2018 +0100
Updated README to reflect current project state
Arvados-DCO-1.1-Signed-off-by: Fuad Muhic <fmuhic at capeannenterprises.com>
diff --git a/sdk/R/README b/sdk/R/README
index 6f1f2ce..cc073d5 100644
--- a/sdk/R/README
+++ b/sdk/R/README
@@ -171,20 +171,22 @@ subcollection$remove("folderInsideSubcollection/")
#Move file or folder inside collection
-file <- collection$get("location/to/my/file.cpp")
+#Directley from collection
-file$move("destination/file.cpp")
+collection$move("folder/file.cpp", "file.cpp")
-#Or subcollections
+#Or from file
-subcollection <- collection$get("location/to/folder")
+file <- collection$get("location/to/my/file.cpp")
+file$move("newDestination/file.cpp")
-subcollection$move("destination/folder")
+#Or from subcollection
-#Make sure to include folder name in destination
-#For example
-#file$move("destination/") will not work
+subcollection <- collection$get("location/to/folder")
+subcollection$move("newDestination/folder")
+#Make sure to include file name in new destination
+#In second example file$move("newDestination/") will not work
--------------------------------------------------------------------------------------------------------------------------------
WORKING WITH ARVADOS PROJECTS
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list