Skip to main content

How-to share files using Google Drive

Share files using Google Drive
Google Drive is one of the best online storage service powered by google.It offers you 15GB of free storage which is associated with Google+ and Gmail also which can hardly occupy 2-3GB of this space.But hey...This much space is still sufficient to store your files for free.Google Drive is not only a good platform for file storage but you can also do a lot of stuff using it like sharing your files online, adding pictures to blogger, creating documents and much more.For a complete list of operations you can perform using drive, Go to


So, we were talking about drive's features but in this article we'll focus on sharing any type of file using google drive.When you upload a file to google drive, it get stored on google's server and a link gets attached to the file for its online access.So sharing a file is just sharing that link and your targetted person/audience can access that file using that link.Also you can decide whether you want that person to perform actions on that file or not.The person can download that file by visiting the provided link.Here are a few steps to complete the action.


  1. First of all, the most important step :-Login to your Google drive account.Its the same google account you use to access your gmail.
  2. Then click on the upload buttton given at the top left corner.
  3. Select the file you want to upload then the file will be uploaded to your drive.
  4. Then you can either right click on the file or check the box in front of the file
  5. If you right click on the file then there will be a option to share the file,Click that. And IF you check right the box then there will be an icon on the top bar which has a '+' sign, Click that.
  6. The either way you choose, a pop up screen will appear, There will be a privacy option.Click "edit"
  7. Then you can either make it available for everyone by clicking on "Public on the web" OR you can make it available to specific people by clicking on "Anyone with the link".
  8. There will be a link on the top of that popup window, Copy the link and send it to the person you want to share your file with.
Thats It

You might be wondering whats the most useful application of this.Then you find out that you can share anytype of file on whatsapp by using Google drive.If you think that this is a long process then before thinking that, just go for it once and you'll find that it takes upto 10 seconds to get the sharing link.Uploading time depends on your data connection and size of file.But what be the case, it is the most reliable method to share .doc, .pdf, .zip, .xml, .srt and other type of files

I hope it'll help you regarding drive operations.Give your comments to get more useful information.Here are some more operations to take on google drive.

Comments

Popular posts from this blog

Image Search Engine Using Python

Images provide a lot more information than audio or text. Image processing is the prime field of research for robotics as well as search engines. In this article we will explore the concept of finding similarity between digital images using python. Then we will use our program to find top 10 search results inside a dataset of images for a given picture. It won't be as good as google's search engine because of the technique we will be using to find similarity between images. But what we are going to make will be pretty cool. So lets start. Setting up the Environment Our Algorithm How the code looks Lets build the GUI Additional Techniques Setting up the Environment The code we are going to write requires a few tools which we need to install first. I will try to be as precise as i can and if you get stuck into installing some tool then you can drop a comment below and i will help you sort out the problem. So here are the tools and the steps to install

Understanding Python Decorators

If you have ever wondered what those @something mean above a python function or method then you are going to have your answers now. This @something line of code is actually called a decorator. I have red from various articles about them but some of them were not able to clarify the concept of a decorator and what we can achieve with them. So in this post we'll learn a lot about python decorators. Here is a list of topics we'll be covering. What is python decorator Understanding the concept Multiple decorators on same function class method decorator Where can we use decorators What is python decorator A python decorator is nothing but a function which accepts your given function as a parameter and returns a replacement function. So its like something this def decorator(your_func): def replacement(your_func_args): #do some other work return replacement @decorator your_func(your_func_args): #your_func code Now when your_func gets called then

Cordova viewport problem solved

Include the viewport settings in Cordova If you are facing the auto zooming problem of cordova then go read on the full article. Cordova actually ignores the viewport meta tag which causes the pixel density problem. So we need to tell cordova that viewport tag is equally important as other tags. To do this, we need to add some code to a file which is specify in the article. Corodva messes with pixels If you are using the latest cordova version or creating the cordova app for latest android versions then you may have faced the zoom malfunctioning.I also faced it when creating an app. Many of you may have already searched the web and found the answer of changing the meta tag attributes to get it working. But adding target-densitydpi=medium-dpi does not solve the problem for latest android versions. It may work for gingerbread but not for kitkat and others. So the final solution which i found was one of the stackexchange answer but rarely found. So i am gonna two things here, i