problem with opening a 'ftp' link in Matlab
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Farz Tak
el 15 de Oct. de 2015
Comentada: Farz Tak
el 15 de Oct. de 2015
I am trying to open "ftp://sidads.colorado.edu/pub/DATASETS/nsidc0032_ease_grid_tbs/global/2013" with ftp function. This link does not need user and pass. It fails. Any help?
0 comentarios
Respuesta aceptada
Thorsten
el 15 de Oct. de 2015
f = ftp('sidads.colorado.edu')
data = mget(f, 'pub/DATASETS/nsidc0032_ease_grid_tbs/global/2013');
3 comentarios
Thorsten
el 15 de Oct. de 2015
You first connect, and then get the data. That is the usual procedure. Otherwise you would need to establish a connection for every data set you want to download. For further information, check
help ftp
Más respuestas (0)
Ver también
Categorías
Más información sobre FTP File Operations en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!