英文:
How do I get a list of the gsutil URIs of all the images in a folder in google cloud storage bucket?
问题
我有一个存放多个文件夹的桶。这些文件夹中还包含存储在其中的图像。我想要创建一个包含所有这些图像的 gsutil URI 的 CSV 文件。如何能够实现这一点?
我找不到一种一次获取所有图像的 gsutil URI 的方法。
英文:
i have a bucket in which i have multiple folders. these folders further have images stored in them. i want to make a csv with the gsutil URIs of all these images. How can I do that?
I could not find a way to get the gsutil URIs of all images at once.
答案1
得分: 2
你需要添加 -R 参数,它将遍历所有文件夹:
gsutil ls -R gs://bucket-name
然后你可以使用 grep -v :$ 来排除文件夹。
英文:
You need to add -R parameter and it will go thru all folders:
gsutil ls -R gs://bucket-name
and then you can use grep -v :$ to discard folders
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论