Reputation: 1
How can I get following variables in Google App Engine Cloud Storage using php:--
Upvotes: 0
Views: 96
Reputation: 1412
You can use glob on GCS, e.g. glob("gs:///*.txt"). However, it may not be the most efficient solution if there is a large number of files.
Upvotes: 2