pdf file direct download

29 visualizaciones (últimos 30 días)
b
b el 29 de Nov. de 2021
Comentada: Chunru el 29 de Nov. de 2021
Suppose we have a website:
fullstudy.com/mathematics/mathematics-book.pdf
How can we download this pdf file using urlwrite or websave, using matlab?
Directly downloading this file from the web (without using Matlab) is not an option.

Respuestas (1)

Chunru
Chunru el 29 de Nov. de 2021
Editada: Chunru el 29 de Nov. de 2021
url = "https://www.mathworks.com/help/pdf_doc/matlab/learn_matlab.pdf";
tic
urlwrite (url, 'learn_matlab.pdf');
toc
Elapsed time is 0.315862 seconds.
dir
. .. learn_matlab.pdf
  5 comentarios
b
b el 29 de Nov. de 2021
It is only a small number of (100 or so) serialized files.
With the simple urlwrite way, it takes about 5 minutes for a ~20MB pdf file. It is not the issue of their server, because direct download (from web) takes less than 5 seconds for the same file.
Is there any other way to do this which will have a similar timeline (seconds)?
For the serialized version, the exact structure is like this:
fullstudy.com/mathematics_01/mathematics-book_01.pdf
fullstudy.com/mathematics_02/mathematics-book_02.pdf
fullstudy.com/mathematics_04/mathematics-book_04.pdf
and so on, with some entries in between missing.
Chunru
Chunru el 29 de Nov. de 2021
Why not trying something like FileZilla in this case?

Iniciar sesión para comentar.

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!

Translated by