필터 지우기
필터 지우기

pdf file direct download

조회 수: 19 (최근 30일)
b
b 2021년 11월 29일
댓글: Chunru 2021년 11월 29일
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.

답변 (1개)

Chunru
Chunru 2021년 11월 29일
편집: Chunru 2021년 11월 29일
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
b
b 2021년 11월 29일
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 2021년 11월 29일
Why not trying something like FileZilla in this case?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Downloads에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by