Download zip file from url in MATLAB
55 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Sourav Sukumaran
2022-6-29
Hi,
Please refer to this MATLAB Answer.You have to use the websave option with the your url and filename
Thanks
1 个评论
Voss
2022-7-2
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
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!