dropbox-automation

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Dropbox Automation via Rube MCP

通过Rube MCP实现Dropbox自动化

Automate Dropbox operations including file upload/download, search, folder management, sharing links, batch operations, and metadata retrieval through Composio's Dropbox toolkit.
借助Composio的Dropbox工具包,自动化Dropbox的各类操作,包括文件上传/下载、搜索、文件夹管理、共享链接、批量操作及元数据检索。

Prerequisites

前提条件

  • Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
  • Active Dropbox connection via
    RUBE_MANAGE_CONNECTIONS
    with toolkit
    dropbox
  • Always call
    RUBE_SEARCH_TOOLS
    first to get current tool schemas
  • 必须已连接Rube MCP(需具备RUBE_SEARCH_TOOLS权限)
  • 通过
    RUBE_MANAGE_CONNECTIONS
    使用
    dropbox
    工具包建立有效的Dropbox连接
  • 请始终先调用
    RUBE_SEARCH_TOOLS
    以获取最新的工具模式

Setup

设置步骤

Get Rube MCP: Add
https://rube.app/mcp
as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
  1. Verify Rube MCP is available by confirming
    RUBE_SEARCH_TOOLS
    responds
  2. Call
    RUBE_MANAGE_CONNECTIONS
    with toolkit
    dropbox
  3. If connection is not ACTIVE, follow the returned auth link to complete Dropbox OAuth
  4. Confirm connection status shows ACTIVE before running any workflows
获取Rube MCP:在客户端配置中添加
https://rube.app/mcp
作为MCP服务器。无需API密钥 — 只需添加端点即可使用。
  1. 确认
    RUBE_SEARCH_TOOLS
    可正常响应,以此验证Rube MCP是否可用
  2. 调用
    RUBE_MANAGE_CONNECTIONS
    并指定工具包为
    dropbox
  3. 若连接状态未显示为ACTIVE,请按照返回的授权链接完成Dropbox OAuth认证
  4. 在运行任何工作流之前,确认连接状态为ACTIVE

Core Workflows

核心工作流

1. Search for Files and Folders

1. 搜索文件与文件夹

When to use: User wants to find files or folders by name, content, or type
Tool sequence:
  1. DROPBOX_SEARCH_FILE_OR_FOLDER
    - Search by query string with optional path scope and filters [Required]
  2. DROPBOX_SEARCH_CONTINUE
    - Paginate through additional results using cursor [Required if has_more]
  3. DROPBOX_GET_METADATA
    - Validate and get canonical path for a search result [Optional]
  4. DROPBOX_READ_FILE
    - Read file content to verify it is the intended document [Optional]
Key parameters:
  • query
    : Search string (case-insensitive, 1+ non-whitespace characters)
  • options.path
    : Scope search to a folder (e.g.,
    "/Documents"
    ); empty string for root
  • options.file_categories
    : Filter by type (
    "image"
    ,
    "document"
    ,
    "pdf"
    ,
    "folder"
    , etc.)
  • options.file_extensions
    : Filter by extension (e.g.,
    ["jpg", "png"]
    )
  • options.filename_only
    : Set
    true
    to match filenames only (not content)
  • options.max_results
    : Results per page (default 100, max 1000)
Pitfalls:
  • Search returns
    has_more: true
    with a
    cursor
    when more results exist; MUST continue to avoid silently missing matches
  • Maximum 10,000 matches total across all pages of search + search_continue
  • DROPBOX_GET_METADATA
    returned
    path_display
    may differ in casing from user input; always use the returned canonical path
  • File content from
    DROPBOX_READ_FILE
    may be returned as base64-encoded
    file_content_bytes
    ; decode before parsing
适用场景:用户希望按名称、内容或类型查找文件或文件夹
工具执行顺序:
  1. DROPBOX_SEARCH_FILE_OR_FOLDER
    - 使用查询字符串进行搜索,可选择路径范围和筛选条件 [必填]
  2. DROPBOX_SEARCH_CONTINUE
    - 使用游标分页获取更多结果 [若存在has_more则必填]
  3. DROPBOX_GET_METADATA
    - 验证搜索结果并获取其标准路径 [可选]
  4. DROPBOX_READ_FILE
    - 读取文件内容以确认是否为目标文档 [可选]
关键参数:
  • query
    : 搜索字符串(不区分大小写,需包含1个以上非空白字符)
  • options.path
    : 限定搜索范围至指定文件夹(例如
    "/Documents"
    );空字符串表示根目录
  • options.file_categories
    : 按类型筛选(
    "image"
    "document"
    "pdf"
    "folder"
    等)
  • options.file_extensions
    : 按文件扩展名筛选(例如
    ["jpg", "png"]
  • options.filename_only
    : 设置为
    true
    仅匹配文件名(不包含内容)
  • options.max_results
    : 每页结果数量(默认100,最大1000)
注意事项:
  • 当存在更多结果时,搜索会返回
    has_more: true
    及对应的
    cursor
    ;必须调用续搜接口,避免遗漏结果
  • 搜索及续搜操作的总匹配结果上限为10,000条
  • DROPBOX_GET_METADATA
    返回的
    path_display
    大小写可能与用户输入不同;请始终使用接口返回的标准路径
  • DROPBOX_READ_FILE
    返回的文件内容可能为base64编码的
    file_content_bytes
    ;解析前需先解码

2. Upload and Download Files

2. 文件上传与下载

When to use: User wants to upload files to Dropbox or download files from it
Tool sequence:
  1. DROPBOX_UPLOAD_FILE
    - Upload a file to a specified path [Required for upload]
  2. DROPBOX_READ_FILE
    - Download/read a file from Dropbox [Required for download]
  3. DROPBOX_DOWNLOAD_ZIP
    - Download an entire folder as a zip file [Optional]
  4. DROPBOX_SAVE_URL
    - Save a file from a public URL directly to Dropbox [Optional]
  5. DROPBOX_GET_SHARED_LINK_FILE
    - Download a file from a shared link URL [Optional]
  6. DROPBOX_EXPORT_FILE
    - Export non-downloadable files like Dropbox Paper to markdown/HTML [Optional]
Key parameters:
  • path
    : Dropbox path (must start with
    /
    , e.g.,
    "/Documents/report.pdf"
    )
  • mode
    :
    "add"
    (default, fail on conflict) or
    "overwrite"
    for uploads
  • autorename
    :
    true
    to auto-rename on conflict instead of failing
  • content
    : FileUploadable object with
    s3key
    ,
    mimetype
    , and
    name
    for uploads
  • url
    : Public URL for
    DROPBOX_SAVE_URL
  • export_format
    :
    "markdown"
    ,
    "html"
    , or
    "plain_text"
    for Paper docs
Pitfalls:
  • DROPBOX_SAVE_URL
    is asynchronous and may take up to 15 minutes for large files
  • DROPBOX_DOWNLOAD_ZIP
    folder must be under 20 GB with no single file over 4 GB and fewer than 10,000 entries
  • DROPBOX_READ_FILE
    content may be base64-encoded; check response format
  • Shared link downloads via
    DROPBOX_GET_SHARED_LINK_FILE
    may require
    link_password
    for protected links
适用场景:用户需上传文件至Dropbox或从Dropbox下载文件
工具执行顺序:
  1. DROPBOX_UPLOAD_FILE
    - 将文件上传至指定路径 [上传操作必填]
  2. DROPBOX_READ_FILE
    - 从Dropbox下载/读取文件 [下载操作必填]
  3. DROPBOX_DOWNLOAD_ZIP
    - 将整个文件夹打包为ZIP文件下载 [可选]
  4. DROPBOX_SAVE_URL
    - 直接将公开URL中的文件保存至Dropbox [可选]
  5. DROPBOX_GET_SHARED_LINK_FILE
    - 从共享链接URL下载文件 [可选]
  6. DROPBOX_EXPORT_FILE
    - 将Dropbox Paper等无法直接下载的文件导出为markdown/HTML格式 [可选]
关键参数:
  • path
    : Dropbox路径(必须以
    /
    开头,例如
    "/Documents/report.pdf"
  • mode
    : 上传模式,
    "add"
    (默认,冲突时失败)或
    "overwrite"
    (覆盖)
  • autorename
    : 设置为
    true
    时,冲突时自动重命名而非失败
  • content
    : 上传文件对象,包含
    s3key
    mimetype
    name
    属性
  • url
    :
    DROPBOX_SAVE_URL
    使用的公开URL
  • export_format
    : Paper文档导出格式,可选
    "markdown"
    "html"
    "plain_text"
注意事项:
  • DROPBOX_SAVE_URL
    为异步操作,大文件可能需要长达15分钟处理时间
  • DROPBOX_DOWNLOAD_ZIP
    的目标文件夹需满足:大小不超过20GB,单个文件不超过4GB,条目数量少于10,000个
  • DROPBOX_READ_FILE
    返回的内容可能为base64编码;请检查响应格式
  • 通过
    DROPBOX_GET_SHARED_LINK_FILE
    下载受保护的共享链接文件时,可能需要提供
    link_password

3. Share Files and Manage Links

3. 文件共享与链接管理

When to use: User wants to create sharing links or manage existing shared links
Tool sequence:
  1. DROPBOX_GET_METADATA
    - Confirm file/folder exists and get canonical path [Prerequisite]
  2. DROPBOX_LIST_SHARED_LINKS
    - Check for existing shared links to avoid duplicates [Prerequisite]
  3. DROPBOX_CREATE_SHARED_LINK
    - Create a new shared link [Required]
  4. DROPBOX_GET_SHARED_LINK_METADATA
    - Resolve a shared link URL to metadata [Optional]
  5. DROPBOX_LIST_SHARED_FOLDERS
    - List all shared folders the user has access to [Optional]
Key parameters:
  • path
    : File or folder path for link creation
  • settings.audience
    :
    "public"
    ,
    "team"
    , or
    "no_one"
  • settings.access
    :
    "viewer"
    or
    "editor"
  • settings.expires
    : ISO 8601 expiration date (e.g.,
    "2026-12-31T23:59:59Z"
    )
  • settings.require_password
    /
    settings.link_password
    : Password protection
  • settings.allow_download
    : Boolean for download permission
  • direct_only
    : For
    LIST_SHARED_LINKS
    , set
    true
    to only return direct links (not parent folder links)
Pitfalls:
  • DROPBOX_CREATE_SHARED_LINK
    fails with 409 Conflict if a shared link already exists for the path; check with
    DROPBOX_LIST_SHARED_LINKS
    first
  • Always validate path with
    DROPBOX_GET_METADATA
    before creating links to avoid
    path/not_found
    errors
  • Reuse existing links from
    DROPBOX_LIST_SHARED_LINKS
    instead of creating duplicates
  • requested_visibility
    is deprecated; use
    audience
    for newer implementations
适用场景:用户需创建共享链接或管理现有共享链接
工具执行顺序:
  1. DROPBOX_GET_METADATA
    - 确认文件/文件夹存在并获取标准路径 [前置操作]
  2. DROPBOX_LIST_SHARED_LINKS
    - 检查现有共享链接以避免重复创建 [前置操作]
  3. DROPBOX_CREATE_SHARED_LINK
    - 创建新的共享链接 [必填]
  4. DROPBOX_GET_SHARED_LINK_METADATA
    - 将共享链接URL解析为元数据 [可选]
  5. DROPBOX_LIST_SHARED_FOLDERS
    - 列出用户有权访问的所有共享文件夹 [可选]
关键参数:
  • path
    : 创建链接的文件或文件夹路径
  • settings.audience
    : 访问受众,可选
    "public"
    "team"
    "no_one"
  • settings.access
    : 权限类型,可选
    "viewer"
    "editor"
  • settings.expires
    : ISO 8601格式的过期时间(例如
    "2026-12-31T23:59:59Z"
  • settings.require_password
    /
    settings.link_password
    : 设置密码保护
  • settings.allow_download
    : 是否允许下载的布尔值
  • direct_only
    :
    LIST_SHARED_LINKS
    接口中设置为
    true
    时,仅返回直接链接(不包含父文件夹链接)
注意事项:
  • 若路径已存在共享链接,
    DROPBOX_CREATE_SHARED_LINK
    会返回409 Conflict错误;请先调用
    DROPBOX_LIST_SHARED_LINKS
    检查
  • 创建链接前需始终通过
    DROPBOX_GET_METADATA
    验证路径,避免
    path/not_found
    错误
  • 优先复用
    DROPBOX_LIST_SHARED_LINKS
    返回的现有链接,而非重复创建
  • requested_visibility
    已废弃;新版本请使用
    audience
    参数

4. Manage Folders (Create, Move, Delete)

4. 文件夹管理(创建、移动、删除)

When to use: User wants to create, move, rename, or delete files and folders
Tool sequence:
  1. DROPBOX_CREATE_FOLDER
    - Create a single folder [Required for create]
  2. DROPBOX_CREATE_FOLDER_BATCH
    - Create multiple folders at once [Optional]
  3. DROPBOX_MOVE_FILE_OR_FOLDER
    - Move or rename a single file/folder [Required for move]
  4. DROPBOX_MOVE_BATCH
    - Move multiple items at once [Optional]
  5. DROPBOX_DELETE_FILE_OR_FOLDER
    - Delete a single file or folder [Required for delete]
  6. DROPBOX_DELETE_BATCH
    - Delete multiple items at once [Optional]
  7. DROPBOX_COPY_FILE_OR_FOLDER
    - Copy a file or folder to a new location [Optional]
  8. DROPBOX_CHECK_MOVE_BATCH
    /
    DROPBOX_CHECK_FOLDER_BATCH
    - Poll async batch job status [Required for batch ops]
Key parameters:
  • path
    : Target path (must start with
    /
    , case-sensitive)
  • from_path
    /
    to_path
    : Source and destination for move/copy operations
  • autorename
    :
    true
    to auto-rename on conflict
  • entries
    : Array of
    {from_path, to_path}
    for batch moves; array of paths for batch creates
  • allow_shared_folder
    : Set
    true
    to allow moving shared folders
  • allow_ownership_transfer
    : Set
    true
    if move changes ownership
Pitfalls:
  • All paths are case-sensitive and must start with
    /
  • Paths must NOT end with
    /
    or whitespace
  • Batch operations may be asynchronous; poll with
    DROPBOX_CHECK_MOVE_BATCH
    or
    DROPBOX_CHECK_FOLDER_BATCH
  • DROPBOX_FILES_MOVE_BATCH
    (v1) has "all or nothing" behavior - if any entry fails, entire batch fails
  • DROPBOX_MOVE_BATCH
    (v2) is preferred over
    DROPBOX_FILES_MOVE_BATCH
    (v1)
  • Maximum 1000 entries per batch delete/move; 10,000 paths per batch folder create
  • Case-only renaming is not supported in batch move operations
适用场景:用户需创建、移动、重命名或删除文件及文件夹
工具执行顺序:
  1. DROPBOX_CREATE_FOLDER
    - 创建单个文件夹 [创建操作必填]
  2. DROPBOX_CREATE_FOLDER_BATCH
    - 批量创建多个文件夹 [可选]
  3. DROPBOX_MOVE_FILE_OR_FOLDER
    - 移动或重命名单个文件/文件夹 [移动操作必填]
  4. DROPBOX_MOVE_BATCH
    - 批量移动多个条目 [可选]
  5. DROPBOX_DELETE_FILE_OR_FOLDER
    - 删除单个文件或文件夹 [删除操作必填]
  6. DROPBOX_DELETE_BATCH
    - 批量删除多个条目 [可选]
  7. DROPBOX_COPY_FILE_OR_FOLDER
    - 将文件或文件夹复制至新位置 [可选]
  8. DROPBOX_CHECK_MOVE_BATCH
    /
    DROPBOX_CHECK_FOLDER_BATCH
    - 轮询异步批量任务状态 [批量操作必填]
关键参数:
  • path
    : 目标路径(必须以
    /
    开头,区分大小写)
  • from_path
    /
    to_path
    : 移动/复制操作的源路径和目标路径
  • autorename
    : 设置为
    true
    时,冲突时自动重命名
  • entries
    : 批量移动的条目数组(每个元素为
    {from_path, to_path}
    );批量创建的路径数组
  • allow_shared_folder
    : 设置为
    true
    时,允许移动共享文件夹
  • allow_ownership_transfer
    : 设置为
    true
    时,允许移动操作变更所有权
注意事项:
  • 所有路径区分大小写且必须以
    /
    开头
  • 路径不能以
    /
    或空白字符结尾
  • 批量操作可能为异步;需通过
    DROPBOX_CHECK_MOVE_BATCH
    DROPBOX_CHECK_FOLDER_BATCH
    轮询状态
  • 旧版
    DROPBOX_FILES_MOVE_BATCH
    (v1)为“全有或全无”模式 — 若任意条目失败,整个批量任务失败
  • 推荐使用新版
    DROPBOX_MOVE_BATCH
    (v2)替代旧版
    DROPBOX_FILES_MOVE_BATCH
    (v1)
  • 批量删除/移动的条目上限为1000个;批量创建文件夹的路径上限为10,000个
  • 批量移动操作不支持仅修改大小写的重命名

5. List Folder Contents

5. 列出文件夹内容

When to use: User wants to browse or enumerate files in a Dropbox folder
Tool sequence:
  1. DROPBOX_LIST_FILES_IN_FOLDER
    - List contents of a folder [Required]
  2. DROPBOX_LIST_FOLDERS
    - Alternative folder listing with deleted entries support [Optional]
  3. DROPBOX_GET_METADATA
    - Get details for a specific item [Optional]
Key parameters:
  • path
    : Folder path (empty string
    ""
    for root)
  • recursive
    :
    true
    to list all nested contents
  • limit
    : Max results per request (default/max 2000)
  • include_deleted
    :
    true
    to include deleted but recoverable items
  • include_media_info
    :
    true
    to get photo/video metadata
Pitfalls:
  • Use empty string
    ""
    for root folder, not
    "/"
  • Recursive listings can be very large; use
    limit
    to control page size
  • Results may paginate via cursor even with small limits
  • DROPBOX_LIST_FILES_IN_FOLDER
    returns 409 Conflict with
    path/not_found
    for incorrect paths
适用场景:用户需浏览或枚举Dropbox文件夹中的文件
工具执行顺序:
  1. DROPBOX_LIST_FILES_IN_FOLDER
    - 列出文件夹内容 [必填]
  2. DROPBOX_LIST_FOLDERS
    - 支持已删除条目的文件夹列表接口 [可选]
  3. DROPBOX_GET_METADATA
    - 获取特定条目的详细信息 [可选]
关键参数:
  • path
    : 文件夹路径(空字符串
    ""
    表示根目录)
  • recursive
    : 设置为
    true
    时,列出所有嵌套内容
  • limit
    : 单次请求的最大结果数(默认/上限为2000)
  • include_deleted
    : 设置为
    true
    时,包含已删除但可恢复的条目
  • include_media_info
    : 设置为
    true
    时,获取照片/视频的元数据
注意事项:
  • 根目录请使用空字符串
    ""
    ,而非
    "/"
  • 递归列出的内容可能非常多;使用
    limit
    参数控制每页大小
  • 即使限制了小结果数,仍可能通过游标分页返回结果
  • 路径错误时,
    DROPBOX_LIST_FILES_IN_FOLDER
    会返回409 Conflict及
    path/not_found
    错误

Common Patterns

通用模式

ID Resolution

ID解析

  • Path-based: Most Dropbox tools use path strings (e.g.,
    "/Documents/file.pdf"
    )
  • ID-based: Some tools accept
    id:...
    format (e.g.,
    "id:4g0reWVRsAAAAAAAAAAAQ"
    )
  • Canonical path: Always use
    path_display
    or
    path_lower
    from
    DROPBOX_GET_METADATA
    responses for subsequent calls
  • Shared link URL: Use
    DROPBOX_GET_SHARED_LINK_METADATA
    to resolve URLs to paths/IDs
  • 基于路径: 大多数Dropbox工具使用路径字符串(例如
    "/Documents/file.pdf"
  • 基于ID: 部分工具接受
    id:...
    格式的参数(例如
    "id:4g0reWVRsAAAAAAAAAAAQ"
  • 标准路径: 后续操作请始终使用
    DROPBOX_GET_METADATA
    返回的
    path_display
    path_lower
  • 共享链接URL: 使用
    DROPBOX_GET_SHARED_LINK_METADATA
    将URL解析为路径/ID

Pagination

分页

Dropbox uses cursor-based pagination across most endpoints:
  • Search: Follow
    has_more
    +
    cursor
    with
    DROPBOX_SEARCH_CONTINUE
    (max 10,000 total matches)
  • Folder listing: Follow cursor from response until no more pages
  • Shared links: Follow
    has_more
    +
    cursor
    in
    DROPBOX_LIST_SHARED_LINKS
  • Batch job status: Poll with
    DROPBOX_CHECK_MOVE_BATCH
    /
    DROPBOX_CHECK_FOLDER_BATCH
Dropbox多数接口采用基于游标的分页机制:
  • 搜索: 当返回
    has_more
    时,使用
    cursor
    调用
    DROPBOX_SEARCH_CONTINUE
    (总匹配结果上限10,000条)
  • 文件夹列表: 跟随响应中的游标直到无更多结果
  • 共享链接: 当
    DROPBOX_LIST_SHARED_LINKS
    返回
    has_more
    时,使用
    cursor
    续取
  • 批量任务状态: 通过
    DROPBOX_CHECK_MOVE_BATCH
    /
    DROPBOX_CHECK_FOLDER_BATCH
    轮询

Async Operations

异步操作

Several Dropbox operations run asynchronously:
  • DROPBOX_SAVE_URL
    - returns job ID; poll or set
    wait: true
    (up to 120s default)
  • DROPBOX_MOVE_BATCH
    /
    DROPBOX_FILES_MOVE_BATCH
    - may return job ID
  • DROPBOX_CREATE_FOLDER_BATCH
    - may return job ID
  • DROPBOX_DELETE_BATCH
    - returns job ID
部分Dropbox操作为异步执行:
  • DROPBOX_SAVE_URL
    - 返回任务ID;可轮询或设置
    wait: true
    (默认超时120秒)
  • DROPBOX_MOVE_BATCH
    /
    DROPBOX_FILES_MOVE_BATCH
    - 可能返回任务ID
  • DROPBOX_CREATE_FOLDER_BATCH
    - 可能返回任务ID
  • DROPBOX_DELETE_BATCH
    - 返回任务ID

Known Pitfalls

已知注意事项

Path Formats

路径格式

  • All paths must start with
    /
    (except empty string for root in some endpoints)
  • Paths must NOT end with
    /
    or contain trailing whitespace
  • Paths are case-sensitive for write operations
  • path_display
    from API may differ in casing from user input; always prefer API-returned paths
  • 所有路径必须以
    /
    开头(部分接口的根目录除外,使用空字符串)
  • 路径不能以
    /
    或空白字符结尾
  • 写入操作的路径区分大小写
  • API返回的
    path_display
    大小写可能与用户输入不同;请优先使用API返回的路径

Rate Limits

速率限制

  • Dropbox API has per-endpoint rate limits; batch operations help reduce call count
  • Search is limited to 10,000 total matches across all pagination
  • DROPBOX_SAVE_URL
    has a 15-minute timeout for large files
  • Dropbox API对各接口有速率限制;批量操作可减少调用次数
  • 搜索操作的总匹配结果上限为10,000条
  • DROPBOX_SAVE_URL
    处理大文件的超时时间为15分钟

File Content

文件内容

  • DROPBOX_READ_FILE
    may return content as base64-encoded
    file_content_bytes
  • Non-downloadable files (Dropbox Paper, Google Docs) require
    DROPBOX_EXPORT_FILE
    instead
  • Download URLs from shared links require proper authentication headers
  • DROPBOX_READ_FILE
    返回的内容可能为base64编码的
    file_content_bytes
  • Dropbox Paper、Google Docs等无法直接下载的文件,需使用
    DROPBOX_EXPORT_FILE
    导出
  • 共享链接的下载URL需要正确的认证头

Sharing

共享功能

  • Creating a shared link when one already exists returns a 409 Conflict error
  • Always check
    DROPBOX_LIST_SHARED_LINKS
    before creating new links
  • Shared folder access may not appear in standard path listings; use
    DROPBOX_LIST_SHARED_FOLDERS
  • 若路径已存在共享链接,
    DROPBOX_CREATE_SHARED_LINK
    会返回409 Conflict错误
  • 创建新链接前请始终调用
    DROPBOX_LIST_SHARED_LINKS
    检查
  • 共享文件夹的内容可能不会出现在标准路径列表中;请使用
    DROPBOX_LIST_SHARED_FOLDERS
    查询

Quick Reference

快速参考

TaskTool SlugKey Params
Search files
DROPBOX_SEARCH_FILE_OR_FOLDER
query
,
options.path
Continue search
DROPBOX_SEARCH_CONTINUE
cursor
List folder
DROPBOX_LIST_FILES_IN_FOLDER
path
,
recursive
,
limit
List folders
DROPBOX_LIST_FOLDERS
path
,
recursive
Get metadata
DROPBOX_GET_METADATA
path
Read/download file
DROPBOX_READ_FILE
path
Upload file
DROPBOX_UPLOAD_FILE
path
,
content
,
mode
Save URL to Dropbox
DROPBOX_SAVE_URL
path
,
url
Download folder zip
DROPBOX_DOWNLOAD_ZIP
path
Export Paper doc
DROPBOX_EXPORT_FILE
path
,
export_format
Download shared link
DROPBOX_GET_SHARED_LINK_FILE
url
Create shared link
DROPBOX_CREATE_SHARED_LINK
path
,
settings
List shared links
DROPBOX_LIST_SHARED_LINKS
path
,
direct_only
Shared link metadata
DROPBOX_GET_SHARED_LINK_METADATA
url
List shared folders
DROPBOX_LIST_SHARED_FOLDERS
limit
Create folder
DROPBOX_CREATE_FOLDER
path
Create folders batch
DROPBOX_CREATE_FOLDER_BATCH
paths
Move file/folder
DROPBOX_MOVE_FILE_OR_FOLDER
from_path
,
to_path
Move batch
DROPBOX_MOVE_BATCH
entries
Delete file/folder
DROPBOX_DELETE_FILE_OR_FOLDER
path
Delete batch
DROPBOX_DELETE_BATCH
entries
Copy file/folder
DROPBOX_COPY_FILE_OR_FOLDER
from_path
,
to_path
Check batch status
DROPBOX_CHECK_MOVE_BATCH
async_job_id
任务工具标识关键参数
搜索文件
DROPBOX_SEARCH_FILE_OR_FOLDER
query
,
options.path
续搜结果
DROPBOX_SEARCH_CONTINUE
cursor
列出文件夹内容
DROPBOX_LIST_FILES_IN_FOLDER
path
,
recursive
,
limit
列出文件夹
DROPBOX_LIST_FOLDERS
path
,
recursive
获取元数据
DROPBOX_GET_METADATA
path
读取/下载文件
DROPBOX_READ_FILE
path
上传文件
DROPBOX_UPLOAD_FILE
path
,
content
,
mode
URL保存至Dropbox
DROPBOX_SAVE_URL
path
,
url
下载文件夹ZIP
DROPBOX_DOWNLOAD_ZIP
path
导出Paper文档
DROPBOX_EXPORT_FILE
path
,
export_format
下载共享链接文件
DROPBOX_GET_SHARED_LINK_FILE
url
创建共享链接
DROPBOX_CREATE_SHARED_LINK
path
,
settings
列出共享链接
DROPBOX_LIST_SHARED_LINKS
path
,
direct_only
共享链接元数据
DROPBOX_GET_SHARED_LINK_METADATA
url
列出共享文件夹
DROPBOX_LIST_SHARED_FOLDERS
limit
创建文件夹
DROPBOX_CREATE_FOLDER
path
批量创建文件夹
DROPBOX_CREATE_FOLDER_BATCH
paths
移动文件/文件夹
DROPBOX_MOVE_FILE_OR_FOLDER
from_path
,
to_path
批量移动
DROPBOX_MOVE_BATCH
entries
删除文件/文件夹
DROPBOX_DELETE_FILE_OR_FOLDER
path
批量删除
DROPBOX_DELETE_BATCH
entries
复制文件/文件夹
DROPBOX_COPY_FILE_OR_FOLDER
from_path
,
to_path
检查批量任务状态
DROPBOX_CHECK_MOVE_BATCH
async_job_id