0
votes

I was used to manually upload contents to Google Cloud Platform storage and share publicly multiple files at once (select all checkbox then Share publicly button).

Now the Share Publicly button is gone so I have to manually check every single file. Sounds like a big regression. Anyone knows another solution to automate this?

1

1 Answers

2
votes

You could use gsutil:

gsutil acl set public-read gs://your-bucket/*

If it's a large number of objects, use the -m option to do the work multi-threaded:

gsutil -m acl set public-read gs://your-bucket/*