You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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();
The text was updated successfully, but these errors were encountered: