Hello Deepak, You'll need to use the absolute path to the destination folder on the instance. For example
*gcloud compute copy-files c:/localfile.js loggeduser@instance-name:/myAwesomeApp/src/main/webapp/resources/js --zone us-central-1* You can also use relative path to the loggeduser's home directory. Assuming the home directory is /home/loggeduser and the project is at the root directory, the command for the above example will be *gcloud compute copy-files c:/localfile.js loggeduser@instance-name:../../myAwesomeApp/src/main/webapp/resources/js --zone us-central-1* It's also important to make sure that 'loggeduser' has necessary permissions, otherwise you may receive 'permission denied' errors. I hope that helps. Cheers! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/5cb12664-e5d0-4c19-965b-9fdfe4dbb0e4%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
