I'm trying to have the list of files into a bucket on Google Cloud Storage, unfortunately my script return always a void list, while there are some file into the bucket.
bucket_name = 'myBucket'
stats = cloudstorage.listbucket(
bucket_name + '/myfolder',
max_keys = page_size,
prefix = ''
)
print(stats)
for stat in stats:
print(stat)