Dropbox

Links

    Dropbox API

    Getting access, Developing, Testing

    Back to Dropbox

    Files - List Folder - Continue

    Once a cursor has been retrieved from :route:list_folder, use this to paginate through all files and retrieve updates to the folder, following the same rules as documented for :route:list_folder.

    Input

    type: object properties: data: type: object description: > cursor: The cursor returned by your last call to :route:`list_folder` or :route:`list_folder/continue`. properties: cursor: type: string description: >- The cursor returned by your last call to :route:`list_folder` or :route:`list_folder/continue`. title: Data

    Output

    type: object description: > entries: The files and (direct) subfolders in the folder. cursor: Pass the cursor into :route:`list_folder/continue` to see what's changed in the folder since your previous query. has_more: If true, then there are more entries available. Pass the cursor to :route:`list_folder/continue` to retrieve the rest. properties: cursor: type: string description: >- Pass the cursor into :route:`list_folder/continue` to see what's changed in the folder since your previous query. has_more: type: boolean description: >- If true, then there are more entries available. Pass the cursor to :route:`list_folder/continue` to retrieve the rest. entries: type: array description: The files and (direct) subfolders in the folder. items: type: object description: > Metadata for a file or folder. name: The last component of the path (including extension). This never contains a slash. path_lower: The lowercased full path in the user's Dropbox. This always starts with a slash. This field will be null if the file or folder is not mounted. path_display: The cased path to be used for display purposes only. In rare instances the casing will not correctly match the user's filesystem, but this behavior will match the path provided in the Core API v1, and at least the last path component will have the correct casing. Changes to only the casing of paths won't be returned by :route:`list_folder/continue`. This field will be null if the file or folder is not mounted. parent_shared_folder_id: Please use :field:`FileSharingInfo.parent_shared_folder_id` or :field:`FolderSharingInfo.parent_shared_folder_id` instead. properties: parent_shared_folder_id: type: string description: >- Please use :field:`FileSharingInfo.parent_shared_folder_id` or :field:`FolderSharingInfo.parent_shared_folder_id` instead. name: type: string description: >- The last component of the path (including extension). This never contains a slash. path_display: type: string description: >- The cased path to be used for display purposes only. In rare instances the casing will not correctly match the user's filesystem, but this behavior will match the path provided in the Core API v1, and at least the last path component will have the correct casing. Changes to only the casing of paths won't be returned by :route:`list_folder/continue`. This field will be null if the file or folder is not mounted. path_lower: type: string description: >- The lowercased full path in the user's Dropbox. This always starts with a slash. This field will be null if the file or folder is not mounted.