repo_tag {repo} | R Documentation |
Add tags to an item.
repo_tag(name = NULL, newtags, tags = NULL)
name |
An item name. |
newtags |
A list of tags that will be added to the item's tag list. |
tags |
A list of tags: newtags will be added to all items matching the list. |
Used for side effects.
repo_untag, repo_set
rp_path <- file.path(tempdir(), "example_repo")
rp <- repo_open(rp_path, TRUE)
rp$put(1, "item1", "Sample item 1", "tag1")
rp$print(show="t")
rp$tag("item1", "tag2")
rp$print(show="t")
## wiping temporary repo
unlink(rp_path, TRUE)