'How to download file from one drive/google drive
I need to download a file from onedrive or google drive using wget or a faster method!
I've tried lots of code i could find on the internet but have not had any luck.
Solution 1:[1]
This has worked for me to download a non-protected-link file:
- Go to your OneDrive
- Click on the share link and copy. It will look like:
https://.../EvZJeK2tIMOs54OA?<other-stuff> - Append
download=1after?looking likehttps://.../EvZJeK2tIMOs54OA?download=1
Now you can use it with wget like:
wget https://.../EvZJeK2tIMOs54OA?download=1 -O <output-file-name\>.<extension\>
Note: The -O (capital O) is to define an output name otherwise it will have EvZJeK2tIMOs54OA?download=1 as the file name.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | José Luis Marrero |
