Tuesday, May 9, 2017

How To Access Icloud Storage From Pc



let's look at how can upload files togoogle cloud storage i'll be covering three ways in thisvideo. using the web ui using the command line, and programmatically. if youstick around till the end i'll also show you how to get fivegb of free space. the first thing we need to do to use cloud storage


How To Access Icloud Storage From Pc, is to create a bucket. you can of abucket like a collection of files and folders first go to your google developer console and then select the project you're working in. then go to the storage section in click cloudstorage


and then click storage browsers. here you can click create a bucket. give thebucket a unique name and then click create. after a fewseconds the new empty bucket is created let's look at how to upload files usingthe web ui go back to the storage browsers and select the bucket we just created you can click upload files to select files and folders from a file picker my favorite is a drag and drop featureshere you can just drag and drop files andfolders straight into the web ui


this is an easy way to quickly uploadfiles from any computer let's look at how to use the googlecloud sdk to upload files if you don't have the google cloud sdkinstalled on your computer see the link in the description for howto install it. let's open a command line in the folder with the files we want to upload.i want to upload file2 and folder2 to cloud storage. to upload file2 first type in gsutil, then cp then the name of the file and finally the name of our cloud storage bucket


if we refresh our google developerconsole we can see that new file has beenuploaded now let's copy folder2. type in gsutil then -m for multicore then cp then -r for recursive, then the namethe folder and then the name the bucket if we refresh our google developer console we can see the new folder with all thefiles inside of it now let's see how can access googlecloud storage in code


the first option are the gcloudlibraries these are idiomatic open source libraries areavailable for java python, go node.js and ruby. simply search forgcloud dash name the language you'll find it ongithub there's also the google api's client this library is auto-generated for a ton of different languages for a ton of different google products. it might look a little weird sometimes but it works great. finally you can usethe raw


json rest api if you want to. check the description to find links to both these apis. inconclusion we looked at how can use the web ui, the command line and code to upload files to google cloudstorage now for what y'all been looking for, how to get the free 5 gb of space first go to app engine dot google dotcom and then select the project you'reworking on go to the administration section on the left sidebar and click on application settings scrolldown


to the cloud integration section andthen click create if you go back to our google developerconsole hit refresh we can see that we have a new bucket andthis bucket give us five gb of free space have fun and see you next time!


No comments:

Post a Comment

Up