7

我正在努力让 ruby​​zip 将目录附加到 zipoutputstream。(我想要输出流,所以我可以从 Rails 控制器发送它)。我的代码遵循这个例子:

http://info.michael-simons.eu/2008/01/21/using-rubyzip-to-create-zip-files-on-the-fly/

当修改为在要添加的文件列表中包含目录时,我收到以下错误:

任何帮助将不胜感激。

更新

在尝试了许多解决方案之后,我在 zipruby 上取得了最大的成功,它有一个干净的 api 和很好的例子:http: //zipruby.rubyforge.org/

4

4 回答 4

9
Zip::ZipFile.open(path, Zip::ZipFile::CREATE) do |zip|
  songs.each do |song|
    zip.add "record/#{song.title.parameterize}.mp3", song.file.to_file.path
  end
end
于 2010-11-11T09:18:40.257 回答
3

我能够使目录与原始文章ZipOutputStream中使用的目录相同。

我所要做的就是在调用时添加目录zos.put_next_entry

例如:

require 'zip/zip'
require 'zip/zipfilesystem'

t = Tempfile.new("some-weird-temp-file-basename-#{request.remote_ip}")
# Give the path of the temp file to the zip outputstream, it won't try to open it as an archive.
Zip::ZipOutputStream.open(t.path) do |zos|
  some_file_list.each do |file|
    # Create a new entry with some arbitrary name
    zos.put_next_entry("myfolder/some-funny-name.jpg") # Added myfolder/
    # Add the contents of the file, don't read the stuff linewise if its binary, instead use direct IO
    zos.print IO.read(file.path)
  end
end
# End of the block  automatically closes the file.
# Send it using the right mime type, with a download window and some nice file name.
send_file t.path, :type => 'application/zip', :disposition => 'attachment', :filename => "some-brilliant-file-name.zip"
# The temp file will be deleted some time...
t.close

我刚刚更改zos.put_next_entry('some-funny-name.jpg')zos.put_next_entry('myfolder/some-funny-name.jpg'),生成的 zipfile 有一个名为的嵌套文件夹myfolder,其中包含文件。

于 2014-04-23T19:24:20.610 回答
3

OOOOOuuuhh ......你肯定想要 ZIPPY。这是一个 Rails 插件,它抽象了 ruby​​zip 中的许多复杂性,并让您创建您正在谈论的内容,包括目录(据我记得)。

干得好:

http://github.com/toretore/zippy

并直接从 zippy 网站:

Example controller:
def show
  @gallery = Gallery.find(params[:id])
  respond_to do |format|
    format.html
    format.zip
  end
end

Example view:
zip['description.txt'] = @gallery.description
@gallery.photos.each do |photo|
  zip["photo_#{photo.id}.png"] = File.open(photo.url)
end

编辑:根据用户评论修改:

嗯...使用 Zippy 的全部目的是让使用 ruby​​ zip 变得更容易。你可能想再看一次(或第一次)……

以下是使用目录创建目录的方法:

some_var = Zippy.open('awsum.zip') do |zip|
  %w{dir_a dir_b dir_c diri}.each do |dir|  
    zip["bin/#{dir}/"]
  end
end

...

send_file some_var, :file_name => ...
于 2010-02-24T01:50:18.310 回答
3

Zippy 将为此工作。可能有更酷的方法可以做到这一点,但由于基本上没有文档,这就是我想出的在 Rakefile 中使用 Zippy 递归复制目录的方法。这个 Rakefile 在 Rails 环境中使用,所以我将 gem 要求放在我的 Gemfile 中:

#Gemfile
source 'http://rubygems.org'
gem 'rails'
gem 'zippy'

这是 Rakefile

#Rakefile
def add_file( zippyfile, dst_dir, f )
  zippyfile["#{dst_dir}/#{f}"] = File.open(f)
end

def add_dir( zippyfile, dst_dir, d )
  glob = "#{d}/**/*"
  FileList.new( glob ).each { |f|
    if (File.file?(f))
      add_file zippyfile, dst_dir, f
    end
  }
end

task :myzip do
  Zippy.create 'my.zip' do |z|
    add_dir z, 'my', 'app'
    add_dir z, 'my', 'config'
    #...
    add_file z, 'my', 'config.ru'
    add_file z, 'my', 'Gemfile'
    #...
  end
end

现在我可以像这样使用它:

C:\> cd my
C:\my> rake myzip

它将生成my.zip包含一个名为“my”的内部目录,其中包含所选文件和目录的副本。

于 2011-05-18T20:56:31.163 回答