How it works
3 steps to a direct download link
1
Copy your Google Drive sharing link
Open the file in Drive, click "Share", then "Copy link". Any view, edit, or share URL works.
2
Paste it into the converter above
The tool automatically detects the file ID from any Google Drive or Google Workspace URL format.
3
Click the result to copy your direct link
The generated URL forces an immediate download — no Drive preview page, no sign-in prompt.
Why use it
When you actually need a direct download URL
Embed in HTML pages
Link directly from an <a> tag so visitors download the file without ever seeing Drive.
Automate with scripts
Use with
wget, curl, or Python's requests to download files programmatically.App & API integrations
Pass the URL to Zapier, Make, or any no-code platform that needs a direct file source.
LMS & course platforms
Share PDFs and resources that students download directly, without a Google account required.
Use images from Drive
A direct URL lets you use Drive-hosted images in <img> tags or as CSS backgrounds.
CDN-style file hosting
Host assets on Drive and serve them anywhere using the direct link — free bandwidth.
Pro tip
Large files over 100 MB?
Google Drive shows a virus-scan warning page for files larger than ~100 MB, which can break automated downloads.
To skip it, append
&confirm=t to the end of your direct download URL. Example:https://drive.google.com/uc?export=download&id=FILE_ID&confirm=t
Compatibility
All supported Google Drive URL formats
The converter automatically detects the file ID from any of the following URL patterns, covering every type of Google Drive and Google Workspace link:
FILE
Regular Drive files
https://drive.google.com/file/d/FILE_ID/viewDOC
Google Docs
https://docs.google.com/document/d/FILE_ID/editXLS
Google Sheets
https://docs.google.com/spreadsheets/d/FILE_ID/editPPT
Google Slides
https://docs.google.com/presentation/d/FILE_ID/editUC
Legacy uc?id= links
https://drive.google.com/uc?id=FILE_IDFAQ
Frequently asked questions
In Google Drive, right-click the file → Share → change access to "Anyone with the link" → set role to "Viewer". Then paste the share URL above to get the direct download link.
The file ID alone does not grant access. Google Drive's own permission system controls who can view or download the file. If the file is private, the direct link will prompt for sign-in — exactly like the original share link.
Yes. Google Workspace files (Docs, Sheets, Slides, Forms, Drawings) all use the same
uc?export=download&id= format. They will be exported and downloaded in their native Office format (e.g., .docx, .xlsx, .pptx).Google can't virus-scan files over ~100 MB, so it shows a confirmation page instead. Add
&confirm=t to the end of the URL to bypass this warning and download directly.No. This tool runs entirely in your browser. No data is sent to any server — the conversion happens locally using JavaScript. No sign-in, no account, no tracking.
Yes. Use
wget "YOUR_DIRECT_URL" or curl -L -o filename "YOUR_DIRECT_URL". The -L flag for curl is important as Google uses redirects.