ElixirDropbox v0.0.8 ElixirDropbox.Files.ListFolder

Link to this section Summary

Functions

A way to quickly get a cursor for the folder’s state

Starts returning the contents of a folder

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

Return revisions of a file

A longpoll endpoint to wait for changes on an account

Link to this section Functions

Link to this function get_latest_cursor(client, path)
get_latest_cursor(Client.t(), binary()) :: ElixirDropbox.response()

A way to quickly get a cursor for the folder’s state.

##Example

ElixirDropbox.Files.ListFolder.get_latest_cursor client, “”

More info at: https://www.dropbox.com/developers/documentation/http/documentation#files-list_revisions

Link to this function list_folder(client, path)
list_folder(Client.t(), binary()) :: ElixirDropbox.response()

Starts returning the contents of a folder.

##Example

ElixirDropbox.Files.ListFolder.list_folder client, “/path”

More info at: https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder

Link to this function list_folder_continue(client, cursor)
list_folder_continue(Client.t(), binary()) :: ElixirDropbox.response()

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

##Example

ElixirDropbox.Files.ListFolder.list_folder_continue client, “”

More info at: https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-continue

Link to this function list_revisions(client, path, limit \\ 10)
list_revisions(Client.t(), binary(), number()) :: ElixirDropbox.response()

Return revisions of a file.

##Example

ElixirDropbox.Files.ListFolder.list_revisions client, “”

More info at: https://www.dropbox.com/developers/documentation/http/documentation#files-list_revisions

Link to this function longpoll(client, cursor)
longpoll(Client.t(), binary()) :: ElixirDropbox.response()

A longpoll endpoint to wait for changes on an account.

##Example

ElixirDropbox.Files.ListFolder.longpoll client, “”

More info at: https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-longpoll