Description Usage Arguments Value Examples
View source: R/drop_file_ops.R
Since many file operations such as move, copy, delete and history can only act
on files that currently exist on a Dropbox store, checking to see if the
path
is valid before operating prevents bad API calls from being sent
to the server. This functions returns a logical response after checking if a
file path is valid on Dropbox.
1 | drop_exists(path = NULL, dtoken = get_dropbox_token())
|
path |
The full path to a Dropbox file |
dtoken |
The Dropbox token generated by |
boolean; TRUE is the file or folder exists, FALSE if it does not.
1 2 3 4 5 6 | ## Not run:
drop_create("existential_test")
drop_exists("existential_test")
drop_delete("existential_test")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.