how to download a file using matlab ?
Show older comments
I have to download a file present in file exchange. how to download it thro matlab using the command urlread
1 Comment
shaziya akhtar
on 2 Sep 2020
Strlen function
Answers (1)
Sanket Mishra
on 7 Jul 2014
0 votes
“urlread” function returns the contents of a URL in the form of a string : >> filex = 'http://www.mathworks.com/matlabcentral/fileexchange/'; >> fullList = urlread(filex);
You can also provide other options with “urlread” such as if you want to retrieve files from file exchange with in past 7 days that contains the word MATLAB as shown below:
>> filex = sprintf('%s%s',... 'http://www.mathworks.com/matlabcentral/fileexchange/',... '?duration=7&term=MATLAB'); >> recent = urlread(filex);
Categories
Find more on Downloads in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!