Description Usage Arguments References Examples
Returns metadata for all files and folders whose filename contains the given search string as a substring.
1 2 3 4 5 6 7 8 | drop_search(
query,
path = "",
start = 0,
max_results = 100,
mode = "filename",
dtoken = get_dropbox_token()
)
|
query |
The search string. This string is split (on spaces) into individual words. Files and folders will be returned if they contain all words in the search string. |
path |
Path in the user's Dropbox, relative to root |
start |
The starting index within the search results (used for paging). The default for this field is 0 |
max_results |
The maximum number of search results to return. The default for this field is 100. |
mode |
Mode can take the option of filename, filename_and_content, or search deleted files with deleted_filename |
dtoken |
The Dropbox token generated by |
1 2 3 4 5 | ## Not run:
# If you know me, you know why this query exists
drop_search('gif') %>% select(path, is_dir, mime_type)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.