I have a storage bucket in google cloud. I have a few directories which I created with files in them.
I know that if I want to cycle through all the files in all the directories, I can use the following command:
for file in list(source_bucket.list_blobs()):
file_path=f"gs://{file.bucket.name}/{file.name}"
print(file_path)
Is there a way to only cycle through one of the directories?