Re: FTP#mget, FTP#mput

From: [email protected] [mailto:[email protected]]
mget and mput

means get all files from the server that match foo* - the
only way to do
this is to combine an ftp.list with fnmatch.

Whoops, yeah. Something like this then:

Untested

def mget(pattern, &block)
list.each{ |file|
next unless File.fnmatch(pattern, file)
get(file, &block)
}
end

Regards,

Dan

This communication is the property of Qwest and may contain confidential
or
privileged information. Unauthorized use of this communication is
strictly
prohibited and may be unlawful. If you have received this communication
in error, please immediately notify the sender by reply e-mail and
destroy
all copies of the communication and any attachments.