listFolder

abstract fun listFolder(folderId: Long): Call<RemoteFolder>

Load a specified folder.

Same as calling listFolder )} with recursive set to false.

For more information, see the related documentation page

Return

Call

Parameters

folderId

abstract fun listFolder(folderId: Long, recursively: Boolean): Call<RemoteFolder>

Load a specified folder.

Loads the metadata about the folder with the provided folder id.

For more information, see the related documentation page.

Return

Call resulting in a RemoteFolder instance holding the metadata for the requested fodler id.

Parameters

folderId

target folder id

recursively

if true, a full folder tree will be returned, otherwise the resulting folder will contain only its direct children


abstract fun listFolder(path: String): Call<RemoteFolder>

Load a specified folder.

Same as calling listFolder )} with recursive set to false.

For more information, see the related documentation page

Return

Call

Parameters

path

Throws

on a null or empty path argument.


abstract fun listFolder(path: String, recursively: Boolean): Call<RemoteFolder>

Load a specified folder.

Loads the metadata about the folder with the provided folder id.

For more information, see the related documentation page.

Return

Call resulting in a RemoteFolder instance holding the metadata for the requested fodler id.

Parameters

path

target folder path

recursively

if true, a full folder tree will be returned, otherwise the resulting folder will contain only its direct children

Throws

on a null or empty path argument.