Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Beginner Help

From: SunandaDH:aol at: 9-Jan-2004 12:21

Hi Chris,
> I would appreciate your assistance in creating a script. I would like to > download a list of binary files from a site and save the list to my hard > drive
Play around with something like this (and watch the line wraps on the url when you cut'n'paste): file-list: [ http://online.newspaperdirect.com/NDImageServer/ndimageserverisapi.dll?file=10152004010900000000001001&page=3&scale=40 ..other urls here ] for nn 1 length? file-list 1 [print ["reading file " nn] temp: read/binary file-list/:nn write/binary join %file- [nn ".png"] temp ] print "Done!!" And watch out for any copyright violations on those images too. Sunanda<