MyDC.ru _ Программирование на Lua _ Загрузка на Lua.
Автор: Lamo 24.5.2012, 19:24
Как с помощью Lua загрузить какой-либо файл с интернета? К примеру картинку, архив, PE, итп. и сохранить её в определенном каталоге. Типа аналога Perl lwp-Simple getstore. getstore address, directory. -- скачать из address в directory.
Автор: Alexey 24.5.2012, 19:42
В комплекте с библиотекой http://mydc.ru/r/?http://w3.impa.br/~diego/software/luasocket/ поставляется образец такого скрипта, вот его описание:
Код
get.lua -- file retriever
This little program is a client that uses the FTP and HTTP code to implement a command line file graber. Just run
lua get.lua <remote-file> [<local-file>]
to download a remote file (either ftp:// or http://) to the specified local file. The program also prints the download throughput, elapsed time, bytes already downloaded etc during download.