我正在向我的归档文件中添加大量的文件,它看起来像这样:
print "Starting ..."
Zip::ZipFile.open(myarchive, 'w') do |zipfile|
my_tons_of_files.each do |file|
print "Adding #{file.filename} to archive ... \r"
# ...
end
print "\n Saving archive"
# !!! -> waiting about 10-15 minutes
# but I want to show the percentage of completed job
end在将所有文件添加到我的存档中后,它会开始压缩所有文件(大约10-15分钟)。
我如何才能指出rubyzip gem的实际情况(实际上我想要像current_file_number/total_files_count一样显示百分比)。
发布于 2011-07-02 01:31:42
您可以覆盖Zip::ZipFile.commit:
require 'zip'
require 'zip/zipfilesystem'
module Zip
class ZipFile
def commit
return if ! commit_required?
on_success_replace(name) {
|tmpFile|
ZipOutputStream.open(tmpFile) {
|zos|
total_files = @entrySet.length
current_files = 1
@entrySet.each do |e|
puts "Current file: #{current_files}, Total files: #{total_files}"
current_files += 1
e.write_to_zip_output_stream(zos)
end
zos.comment = comment
}
true
}
initialize(name)
end
end
end
print "Starting ..."
Zip::ZipFile.open(myarchive, 'w') do |zipfile|https://stackoverflow.com/questions/6547112
复制相似问题