2
votes
  • Google Play Developer account reports are stored on private Google Cloud Storage bucket.
  • Every Google Play Developer account has Google Cloud Storage bucket ID

So to access I have installed gsutil on my windows machine.

Now I am using this command to copy all files from bucket



    gsutil cp -r dir gs://[bucket_id]

its says


CommandException: No URLs matched

When I list all directories on bucket, this command works



    gsutil ls gs://[bucket_id] 

Can anyone help here to understand the gsutil exception ?

1

1 Answers

0
votes

This exception is because destination URL is missing

It should be like...

gsutil cp -r dir gs://[bucket_id] [destination_bucket_url]