Google Drive Download Network Error

How to Share Large Files on Google Drive. Explore this Article Uploading the File Sharing the File (Desktop) Sharing the File (Mobile) Ask a Question Related Articles. To download a file opened in Google Drive, click or tap the 'Download' button at the top of the window. If the file opens in Google Docs or Google Sheets, it. Whenever I try and download a larger file in this case its 7.9 gigs it gets to about half or 1/3 and says download failed- Network error.

Access Google Drive on your phone or tablet Get the Google Drive app to access all of your files from your Android or iOS device. Download Backup and Sync for Windows. > How to > Backup and Recovery > Fix Google Drive Not Syncing in Windows 10 Fix Google Drive Not Syncing in Windows 10 Posted on Sep 20, 2017 by Tracy King to Backup and Recovery. If you get an error message on Chrome when you try to download apps, themes, extensions, or other files, try these fixes. Fix most file download errors If you try to. The Google Drive download limit may reach anytime if you have been using it from a far while now. In case, if you've stuck to bypass Google Drive download. The Drive API returns two levels of error information: HTTP error codes and messages in the header; A JSON object in the response body with additional details that.

by Martin Brinkmann on April 14, 2017 in Companies, Google - Last Update: January 04, 2018 - 50 comments

Sorry, you can't view or download this file at this time is an error message that you may get when you try to download files on Google Drive.

The explanation for the error message is simple: while users are free to share files publicly, or with a large number of users, quotas are in effect that limit availability.

If too many users view or download a file, it may be locked for a 24 hour period before the quota is reset. The period that a file is locked may be shorter according to Google.

If a file is particularly popular, it may take days or even longer before you manage to download it to your computer or place it on your Drive storage.

Fix Google Drive: Sorry, you can't view or download this file error

While you may wait until the file becomes available again, doing so may be risky. If the file is pulled in the meantime, you won't be able to download it anymore. Also, if you require the file right away, for instance for work related tasks, waiting may not be an option.

There is a workaround that allows you to bypass Google Drive's 24 hour limit. How that is done depends largely on what you see on the screen.

The most common error is shown on the screenshot above. It simply shows the error message but no other controls or options.

  1. Locate the 'uc' part of the address, and replace it with 'open', so that the beginning of the URL reads https://drive.google.com/open?.
  2. Load the address again once you have replaced uc with open in the address.
  3. This loads a new screen with controls at the top.
  4. Click on the 'add to my drive' icon at the top right.
  5. Click on 'add to my drive' again to open your Google Drive storage in a new tab in the browser.
  6. You should see the locked file on your drive now.
  7. Select it with a right-click, and then the 'make a copy' option from the menu.
  8. Select the copy of the file with a right-click, and there download to download the file to your local system.
Google Drive Download Network Error

Basically, what this does is create a copy of the file on your own Drive account. Since you are the owner of the copied file, you may download it to your local system this way.

Please note that this works only if you are signed in to a Google Account. Also note that you are the owner of the copied file and will be held responsible for policy violations or other issues linked to the file.

Now You: How do you handle file downloads on the Internet?

Fix Google Drive: Sorry, you can't view or download this file error
Description

Error Creating Copy Google Drive

Sorry, you can't view or download this file at this time is an error message that you may get when you try to download files on Google Drive.
Author
Ghacks Technology News
Logo
Advertisement

I am using the drive api to create a database file in the hidden app folder on google drive. The database file is called notes.db I have been able to successfully upload the database file to google drive but I have no idea how to download it back to the user's device. This is what i'm trying to do. My app makes a folder on the user's device called School Binder. in that folder is another folder called Note backups. Here is where I backup the database. The directory is

Google drive takes this file and uploads it to the hidden app folder. Now I want to get this notes.db file stored in that app folder on google drive and download it back to this directory on the phone.

How do I do this. Thanks. Here is my code for uploading the database to drive this works correctly

How do I change this to make it work for downloading data to a file from google drive

Jordan
JordanJordan

3 Answers

In Lifecycle of a Drive file, Drive Android API lets your app access files even if the device is offline. To support offline cases, the API implements a sync engine, which runs in the background to upstream and downstream changes as network access is available and to resolve conflicts. Perform an initial download request if the file is not yet synced to the local context but the user wants to open the file. The API handles this automatically when a file is requested.

In downloading a file, you make an authorized HTTP GET request to the file's resource URL and include the query parameter alt=media. However, please note that downloading the file requests the user to have at least read access.

Sample HTTP Request:

GET https://www.googleapis.com/drive/v3/files/0B9jNhSvVjoIVM3dKcGRKRmVIOVU?alt=media Authorization: Bearer ya29.AHESVbXTUv5mHMo3RYfmS1YJonjzzdTOFZwvyOAUVhrs

For the coding part, this SO post might be of help too.

Community
TeyamTeyam
4,9472 gold badges8 silver badges19 bronze badges

I figured it out this is my code to redownload a database back to the phone

JordanJordan

here is a complete class to upload an internal database, download it and delete it from Google Drive.

Only need to call functions asynchronously and show user a progressbar.DownloadFromGoogleDrive function saves the database in the internal database folder to the app with the name 'database2'

Hope it's helpful.

}

Jose19589Jose19589

Google Docs

Not the answer you're looking for? Browse other questions tagged androidmysqlgoogle-drive-android-api or ask your own question.