I'm using spring boot to connect to google cloud storage.
I'm able to connect to a single file and read the contents from google cloud storage bucket.
but I'm not able to get list of all the files in google cloud storage bucket.
please help me.
This works
Resource gcsFile = this.context.getResource("gs://" + bucketName + "/" + filePath);
This does not work.
Resource[] resources = this.context.getResources("gs://" + bucketName + "/*.*");
any reasons ?