Rubyzip 无法从另一个文件夹添加同名文件 [Zip::EntryExistsError]

Rubyzip fail to add a file with a same name from another folder [Zip::EntryExistsError]

使用以下测试树文件夹为例:

- test1
- folder2
  - test1 # This is the file rubyzip will break on.
  - test2

并从 here 复制此代码:

path = File.expand_path path
archive = File.join(__dir__, File.basename(path)) + '.zip'
FileUtils.rm archive, force: true

Zip::File.open(archive, Zip::File::CREATE) do | zipfile |
  Dir["#{path}/**/**"].reject{|f|f==archive}.each do | item |
    basename = File.basename(item)
    zipfile.add(basename, item)
  end
end

它失败了,因为有两个文件具有相同的名称,即使它们不在同一目录中(test1 在我的示例中)。

有什么我遗漏的吗?

感谢@simonoff (here),我不应该使用基本名称,而是使用完整的相对路径,这样 Rubyzip 就可以区分 test1folder2/test1

这是修复它的代码:

basename = File.basename path
dirname = File.dirname path
internal_path = path.sub %r[^#{__dir__}/], ''

archive = File.join(dirname, basename) + '.zip'
FileUtils.rm archive, force: true

Zip::File.open(archive, Zip::File::CREATE) do | zipfile |
  Dir["#{internal_path}/**/**"].map{|e|e.sub %r[^#{internal_path}/],''}.reject{|f|f==archive}.each do | item |
    zipfile.add(item, File.join(internal_path, item))
  end
end

肯定有更简洁的方法。