我有一個包含許多zip文件的url,我需要下載它們的本地副本。我到目前爲止:使用Ruby從URL下載文件
require 'open-uri'
require 'pry'
def download_xml(url, dest)
open(url) do |u|
File.open(dest, 'wb') { |f| f.write(u.read) }
end
end
urls = ["http://feed.omgili.com/5Rh5AMTrc4Pv/mainstream/posts/"]
urls.each { |url| download_xml(url, url.split('/').last) }
但是,我似乎無法訪問位於該位置的zip文件或通過它們循環。我將如何遍歷該URL末尾的每個zip文件,以便可以在該數組中訪問它們並通過該方法下載它們?
請不要忘記標記我的答案是它應得的正確答案。非常感謝! – mertyildiran
我會確保! –