mirror of
https://github.com/fsouza/fake-gcs-server.git
synced 2026-04-27 06:35:54 +03:00
[GH-ISSUE #1683] Unable to list the Folders #213
Labels
No labels
bug
compatibility-issue
docker
documentation
enhancement
help wanted
needs information
pull-request
question
stale
unfortunate
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/fake-gcs-server#213
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Mansur-L on GitHub (Jul 17, 2024).
Original GitHub issue: https://github.com/fsouza/fake-gcs-server/issues/1683
Tried creating a folder using storage in fake gcs. And created a files inside the folder. While trying to list the folders created using storage.create, the folder is not getting listed.
STORAGE.create(BucketInfo.newBuilder("Test bucket").build());
BlobId blobId3 = BlobId.of("Test bucket", "testDelete/");
BlobId blobId4 = BlobId.of("Test bucket", "testfolder/test.txt");
BlobInfo blobInfo3 = BlobInfo.newBuilder(blobId3).build();
BlobInfo blobInfo4 = BlobInfo.newBuilder(blobId4).build();
@gfourny-sfeir commented on GitHub (Jul 19, 2024):
I have an exception on storage.get(bucket) Java API:
If I request storage.get(bucket, blobName) it's working
@danielibars commented on GitHub (Aug 21, 2025):
Is this problem addressed already?
I'm struggling with a Java application to list all folders within my fake bucket, getting the same 404 response
It'd lovely to have this feature!