fs_delete | R Documentation |
Delete article (private or drafts only) or attached file
fs_delete(article_id, file_id = NULL, session = fs_get_auth(), debug = FALSE)
article_id |
the id number of the article |
file_id |
the id number of the file, if removing an attached file from a fileset. file_id defaults to NULL, removing the entire draft or private article. |
session |
(optional) the authentication credentials from |
debug |
display return value of request? |
output of DELETE request (invisibly)
Carl Boettiger cboettig@gmail.com
fs_auth
## Not run: fs_delete(123) ## Delete all attachments in the second-most-recent entry in my library my_lib <- fs_browse(mine=TRUE) article_id <- my_lib[[2]]$article_id file_ids <- sapply(my_lib[[2]]$files, `[[`, "id") sapply(file_ids, function(id) fs_delete(article_id, id)) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.