1 Answers
Ah, you don’t need to! 🙂 You can just create an object into any folder structure you want! Here’s a quote from Google’s "How Subdirectories Work" doc page:
gsutil provides the illusion of a hierarchical file tree atop the "flat" name space supported by the Cloud Storage service. To the service, the object gs://your-bucket/abc/def.txt is just an object that happens to have "/" characters in its name. There is no "abc" directory; just a single object with the given name.
That said, you can also create a "folder" by ending an object name with a trailing "/". And you’ll probably find all of that doc page I linked quite interesting. 🙂
Cheers!
Mattias