Ken Stillson
unread,Nov 30, 2010, 11:37:42 PM11/30/10Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Storage for Developers
From my understanding, there's really no such thing as a folder as a
separate entity- it's not a real file-system. You create a file
object with a pathname that happens to contain "/" characters, and the
virtual directory tree is constructed by splitting the pathname string
at the "/" characters. Bottom line- the system only contains files,
not directories, so just create the files with the full pathnames you
want, and the appropriate directory structure will magically appear.
If you want to pre-populate a directory tree, just create a dummy file
in each directory you want to exist. At least I think that's the way
it works. :)