我正在向我的档案添加大量文件,它看起来像这样:
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
的百分比(。
您可以覆盖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|