将“公共”目录上传到Google云端存储

时间:2015-06-23 18:14:23

标签: google-cloud-storage gsutil

使用SSH中的此命令,我可以将整个文件夹上传到Google云端存储中:

gsutil cp -R folder_big gs://bucket_name

这些是文件夹中的文件:

enter image description here

我不想单独点击每个文件以公开它。

如何在上传时自动公开文件夹(及其中的所有文件)?

1 个答案:

答案 0 :(得分:7)

你可以这样做:

gsutil cp -a public-read -R folder_big gs://bucket_name

注意:如果您使用多线程选项,如果它是一个大文件夹,您可能会获得显着的性能提升:

gsutil -m cp -a public-read -R folder_big gs://bucket_name