fs_delete function

Delete article (private or drafts only) or attached file

Delete article (private or drafts only) or attached file

fs_delete(article_id, file_id = NULL, session = fs_get_auth(), debug = FALSE)

Arguments

  • 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 fs_auth. If not provided, will attempt to load from cache as long as figshare_auth has been run.
  • debug: display return value of request?

Returns

output of DELETE request (invisibly)

Examples

## 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)

References

https://docs.figshare.com

See Also

fs_auth

Author(s)

Carl Boettiger cboettig@gmail.com