Download zip file from url in MATLAB
55 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
PeymanS
el 7 de Jun. de 2022
Comentada: Voss
el 2 de Jul. de 2022
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 comentarios
Respuesta aceptada
Sourav Sukumaran
el 29 de Jun. de 2022
Hi,
Please refer to this MATLAB Answer.You have to use the websave option with the your url and filename
Thanks
1 comentario
Voss
el 2 de Jul. de 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
Más respuestas (0)
Ver también
Categorías
Más información sobre Downloads en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!