Page 1 of 1

Возможность качать определенную часть файла

Posted: 29 Jan 2006, 1:37 Sun
by OlegMN
Было бы нелохо сделать такую фичу, чтобы можно было качать опред. часть файла.

Posted: 31 Jan 2006, 8:08 Tue
by Fktrc
Оно тебе реально сейчас надо или "хорошо бы" или вообще поприкалываться?
Если реально, обрати внимание на консольную качалку CURL
http://curl.haxx.se/download/curl-7.15. ... l-sspi.zip
Вырезка из хелпа
----
Get the first 100 bytes of a document:

curl -r 0-99 http://www.get.this/

Get the last 500 bytes of a document:

curl -r -500 http://www.get.this/

Curl also supports simple ranges for FTP files as well. Then you can only
specify start and stop position.

Get the first 100 bytes of a document using FTP:

curl -r 0-99 ftp://www.get.this/README
----