Возможность качать определенную часть файла
Moderators: Korney San, Qwertiy, marcipan, igelizm
Возможность качать определенную часть файла
Было бы нелохо сделать такую фичу, чтобы можно было качать опред. часть файла.
Оно тебе реально сейчас надо или "хорошо бы" или вообще поприкалываться?
Если реально, обрати внимание на консольную качалку 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
----
Если реально, обрати внимание на консольную качалку 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
----