Learn R Programming

rfigshare (version 0.2-6)

fs_delete: Delete article (private or drafts only) or attached file

Description

Delete article (private or drafts only) or attached file

Usage

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

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.

Value

  • output of DELETE request (invisibly)

References

http://api.figshare.com

See Also

fs_auth

Examples

Run this code
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))

Run the code above in your browser using DataLab