List files
You can list files without having to download all the files. You can do this by using the list API from the Amplify Library for Storage.
With StoragePath
The following example lists all objects inside the public/photos/
path:
StoragePagedListOptions options = StoragePagedListOptions.builder() .setPageSize(1000) .build();
Amplify.Storage.list( StoragePath.fromString("public/photos/"), options, result -> { for (StorageItem item : result.getItems()) { Log.i("MyAmplifyApp", "Item: " + item.getPath()); } Log.i("MyAmplifyApp", "Next Token: " + result.getNextToken()); }, error -> Log.e("MyAmplifyApp", "List failure", error););
val options = StoragePagedListOptions.builder() .setPageSize(1000) .build()
Amplify.Storage.list(StoragePath.fromString("public/photos/"), options, { result -> result.items.forEach { item -> Log.i("MyAmplifyApp", "Item: ${item.path}") } Log.i("MyAmplifyApp", "Next Token: ${result.nextToken}") }, { Log.e("MyAmplifyApp", "List failure", it) })
val options = StoragePagedListOptions.builder() .setPageSize(1000) .build()
try { val result = Amplify.Storage.list(StoragePath.fromString("public/photos/"), options) result.items.forEach { Log.i("MyAmplifyApp", "Item: $it") } Log.i("MyAmplifyApp", "next token: ${result.nextToken}")} catch (error: StorageException) { Log.e("MyAmplifyApp", "List failure", error)}
StoragePagedListOptions options = StoragePagedListOptions.builder() .setPageSize(1000) .build();
RxAmplify.Storage.list(StoragePath.fromString("public/photos/"), options) .subscribe( result -> { for (StorageItem item : result.getItems()) { Log.i("MyAmplifyApp", "Item: " + item.getPath()); } Log.i("MyAmplifyApp", "Next Token: " + result.getNextToken()); }, error -> Log.e("MyAmplifyApp", "List failure", error); );
Exclude results from nested subpaths
By default, the list
API will return all objects contained within the given path, including objects inside nested subpaths.
For example, the previous public/photos/
path would include these objects:
Path: public/photos/photo1.jpgPath: public/photos/vacation/photo1.jpgPath: public/photos/thumbnails/photo1.jpg
In order to exclude objects within the vacation
and thumbnails
subpaths, you can set the subpathStrategy
option to SubpathStrategy.Exclude()
:
StoragePagedListOptions options = StoragePagedListOptions.builder() .setPageSize(1000) .setSubpathStrategy(SubpathStrategy.Exclude()) .build();
Amplify.Storage.list( StoragePath.fromString("public/photos/"), options, result -> { for (StorageItem item : result.getItems()) { Log.i("MyAmplifyApp", "Item: " + item.getPath()); } Log.i("MyAmplifyApp", "Next Token: " + result.getNextToken()); }, error -> Log.e("MyAmplifyApp", "List failure", error););
val options = StoragePagedListOptions.builder() .setPageSize(1000) .setSubpathStrategy(SubpathStrategy.Exclude()) .build()
Amplify.Storage.list(StoragePath.fromString("public/photos/"), options, { result -> result.items.forEach { item -> Log.i("MyAmplifyApp", "Item: ${item.path}") } Log.i("MyAmplifyApp", "Next Token: ${result.nextToken}") }, { Log.e("MyAmplifyApp", "List failure", it) })
val options = StoragePagedListOptions.builder() .setPageSize(1000) .setSubpathStrategy(SubpathStrategy.Exclude()) .build()
try { val result = Amplify.Storage.list(StoragePath.fromString("public/photos/"), options) result.items.forEach { Log.i("MyAmplifyApp", "Item: $it") } Log.i("MyAmplifyApp", "next token: ${result.nextToken}")} catch (error: StorageException) { Log.e("MyAmplifyApp", "List failure", error)}
StoragePagedListOptions options = StoragePagedListOptions.builder() .setPageSize(1000) .setSubpathStrategy(SubpathStrategy.Exclude()) .build();
RxAmplify.Storage.list(StoragePath.fromString("public/photos/"), options) .subscribe( result -> { for (StorageItem item : result.getItems()) { Log.i("MyAmplifyApp", "Item: " + item.getPath()); } Log.i("MyAmplifyApp", "Next Token: " + result.getNextToken()); }, error -> Log.e("MyAmplifyApp", "List failure", error); );
The response will only include objects within the public/photos/
path and will also provide a list of the excluded subpaths:
Path: public/photos/photo01.jpgSubpath: public/photos/vacation/Subpath: public/photos/thumbnails/
The default delimiter character is "/"
, but this can be changed by supplying a custom delimiter:
StoragePagedListOptions options = StoragePagedListOptions.builder() .setPageSize(1000) .setSubpathStrategy(SubpathStrategy.Exclude("-")) .build();
Amplify.Storage.list( StoragePath.fromString("public/photos/"), options, result -> { for (StorageItem item : result.getItems()) { Log.i("MyAmplifyApp", "Item: " + item.getPath()); } Log.i("MyAmplifyApp", "Next Token: " + result.getNextToken()); }, error -> Log.e("MyAmplifyApp", "List failure", error););
val options = StoragePagedListOptions.builder() .setPageSize(1000) .setSubpathStrategy(SubpathStrategy.Exclude("-")) .build()
Amplify.Storage.list(StoragePath.fromString("public/photos/"), options, { result -> result.items.forEach { item -> Log.i("MyAmplifyApp", "Item: ${item.path}") } Log.i("MyAmplifyApp", "Next Token: ${result.nextToken}") }, { Log.e("MyAmplifyApp", "List failure", it) })
val options = StoragePagedListOptions.builder() .setPageSize(1000) .setSubpathStrategy(SubpathStrategy.Exclude("-")) .build()
try { val result = Amplify.Storage.list(StoragePath.fromString("public/photos/"), options) result.items.forEach { Log.i("MyAmplifyApp", "Item: $it") } Log.i("MyAmplifyApp", "next token: ${result.nextToken}")} catch (error: StorageException) { Log.e("MyAmplifyApp", "List failure", error)}
StoragePagedListOptions options = StoragePagedListOptions.builder() .setPageSize(1000) .setSubpathStrategy(SubpathStrategy.Exclude("-")) .build();
RxAmplify.Storage.list(StoragePath.fromString("public/photos/"), options) .subscribe( result -> { for (StorageItem item : result.getItems()) { Log.i("MyAmplifyApp", "Item: " + item.getPath()); } Log.i("MyAmplifyApp", "Next Token: " + result.getNextToken()); }, error -> Log.e("MyAmplifyApp", "List failure", error); );
The response will only include objects within the public/photos/
path not grouped by the delimiter -
.
Path: public/photos/2023/photos01.jpgPath: public/photos/2024/photos02.jpgSubpath: public/photos/202-
With Key (Deprecated)
This will list all public files:
StoragePagedListOptions options = StoragePagedListOptions.builder() .setPageSize(1000) .build();
Amplify.Storage.list( "", options, result -> { for (StorageItem item : result.getItems()) { Log.i("MyAmplifyApp", "Item: " + item.getKey()); } Log.i("MyAmplifyApp", "Next Token: " + result.getNextToken()); }, error -> Log.e("MyAmplifyApp", "List failure", error););
val options = StoragePagedListOptions.builder() .setPageSize(1000) .build()
Amplify.Storage.list("", options, { result -> result.items.forEach { item -> Log.i("MyAmplifyApp", "Item: ${item.key}") } Log.i("MyAmplifyApp", "Next Token: ${result.nextToken}") }, { Log.e("MyAmplifyApp", "List failure", it) })
val options = StoragePagedListOptions.builder() .setPageSize(1000) .build()
try { val result = Amplify.Storage.list("", options) result.items.forEach { Log.i("MyAmplifyApp", "Item: $it") } Log.i("MyAmplifyApp", "next token: ${result.nextToken}")} catch (error: StorageException) { Log.e("MyAmplifyApp", "List failure", error)}
StoragePagedListOptions options = StoragePagedListOptions.builder() .setPageSize(1000) .build();
RxAmplify.Storage.list("", options) .subscribe( result -> { for (StorageItem item : result.getItems()) { Log.i("MyAmplifyApp", "Item: " + item.getKey()); } Log.i("MyAmplifyApp", "Next Token: " + result.getNextToken()); }, error -> Log.e("MyAmplifyApp", "List failure", error); );
You can also list private or protected files by passing options. For example, to list all protected files owned by a user identified by the ID otherUserID
(This behavior is deprecated):
StoragePagedListOptions options = StoragePagedListOptions.builder() .accessLevel(StorageAccessLevel.PROTECTED) .targetIdentityId("otherUserID") .setPageSize(1000) .build();
Amplify.Storage.list( "", options, result -> { for (StorageItem item : result.getItems()) { Log.i("MyAmplifyApp", "Item: " + item.getKey()); } Log.i("MyAmplifyApp", "Next Token: " + result.getNextToken()); }, error -> Log.e("MyAmplifyApp", "List failure", error););
val options = StoragePagedListOptions.builder() .accessLevel(StorageAccessLevel.PROTECTED) .targetIdentityId("otherUserID") .setPageSize(1000) .build()
Amplify.Storage.list("", options, { result -> result.items.forEach { item -> Log.i("MyAmplifyApp", "Item: ${item.key}") } Log.i("MyAmplifyApp", "Next Token: ${result.nextToken}") }, { Log.e("MyAmplifyApp", "List failure", it) })
val options = StoragePagedListOptions.builder() .accessLevel(StorageAccessLevel.PROTECTED) .targetIdentityId("otherUserID") .setPageSize(1000) .build()
try { val result = Amplify.Storage.list("", options) result.items.forEach { Log.i("MyAmplifyApp", "Item: $it") } Log.i("MyAmplifyApp", "next token: ${result.nextToken}")} catch (error: StorageException) { Log.e("MyAmplifyApp", "List failure", error)}
StoragePagedListOptions options = StoragePagedListOptions.builder() .accessLevel(StorageAccessLevel.PROTECTED) .targetIdentityId("otherUserID") .setPageSize(1000) .build();
RxAmplify.Storage.list("", options) .subscribe( result -> { for (StorageItem item : result.getItems()) { Log.i("MyAmplifyApp", "Item: " + item.getKey()); } Log.i("MyAmplifyApp", "Next Token: " + result.getNextToken()); }, error -> Log.e("MyAmplifyApp", "List failure", error); );
More list
options
Option | Type | Description |
---|---|---|
pageSize | int | Number between 1 and 1,000 that indicates the limit of how many entries to fetch when retrieving file lists from the server |
nextToken | String | String indicating the page offset at which to resume a listing. |
If the pageSize
is set lower than the total file size available, a single list
call only returns a subset of all the files. To list all the files with multiple calls, the user can use the nextToken
value from the previous response.