>>>>> "B" == Bob  <bobx / linuxmail.org> writes:

 Try this


B> files = ftp.list('*x86.exe')  # <-- what does this return?

   files = ftp.nlst('*x86.exe')
   files.each do |f|
       p ftp.mdtm(f)
   end
  

Guy Decoux