本文介绍了为Google存储桶中的所有对象设置元数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想将Google存储桶的所有对象的Content-Type
元数据设置为image/jpeg
.
I want to set Content-Type
metadata to image/jpeg
for all objects of a Google Storage bucket.
该怎么做?
推荐答案
使用gsutil
及其 setmeta
命令:
Using gsutil
and its setmeta
command:
gsutil -m setmeta -h "Content-Type:image/jpeg" gs://YOUR_BUCKET/**/*.jpg
如果有很多对象,请使用-m
激活并行更新.
Use the -m
to activate a parallel update, in case you have a lot of objects.
/**/*
模式将对您存储桶中可能包含的所有文件夹执行递归搜索.
The /**/*
pattern will perform a recursive search on any folders that you may have on your bucket.
这篇关于为Google存储桶中的所有对象设置元数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!