Download zip file from url in MATLAB
38 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I would like to download a zip file from a url.
Here is the webpage:
and I would like to download "CSR_CSR-Release-06_96x96_unfiltered.zip"
Thanks in advance.
0 Commenti
Risposta accettata
Sourav Sukumaran
il 29 Giu 2022
Hi,
Please refer to this MATLAB Answer.You have to use the websave option with the your url and filename
Thanks
1 Commento
Voss
il 2 Lug 2022
url = 'http://icgem.gfz-potsdam.de/getseries/01_GRACE/CSR/CSR Release 06/96x96/unfiltered';
filename = './unfiltered.zip';
websave(filename,url);
ls *.zip
unzip unfiltered.zip
ls
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Downloads in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!