Description Usage Arguments Value Examples
Can be used to either see all items in a folder, or only items that have changed since a previous request was made.
1 2 3 4 5 6 7 8 9 10 11 |
path |
path to folder in Dropbox to list contents of. Defaults to the root directory. |
recursive |
If TRUE, the list folder operation will be applied recursively to all subfolders and the response will contain contents of all subfolders. Defaults to FALSE. |
include_media_info |
If TRUE, FileMetadata.media_info is set for photo and video. Defaults to FALSE. |
include_deleted |
If TRUE, the results will include entries for files and folders that used to exist but were deleted. Defaults to FALSE. |
include_has_explicit_shared_members |
If TRUE, the results will include a flag for each file indicating whether or not that file has any explicit members. Defaults to FALSE. |
include_mounted_folders |
If TRUE, the results will include entries under mounted folders which includes app folder, shared folder and team folder. Defaults to TRUE. |
limit |
The maximum number of results to return per request. Note: This is an approximate number and there can be slightly more entries returned in some cases. Defaults to NULL, no limit. |
cursor |
string or boolean:
|
dtoken |
The Dropbox token generated by |
Either a tbl_df
of items in folder, one row per file or folder, with metadata values as columns, or a character string giving a cursor to be used later for change detection (see cursor
).
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
# list files in root directory
drop_dir()
# get a cursor from root directory,
# upload a new file,
# return only information about new file
cursor <- drop_dir(cursor = TRUE)
drop_upload("some_new_file")
drop_dir(cursor = cursor)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.