zipruby の続き。200超のファイルをzipに追加していたら、こんなエラーが出た。(T^T) Close archive failed: Failure to create temporary file: Too many open files (Zip::Error) エラーが出たときのスクリプトはこんな感じ。エラーメッセージからすると、ファイルディスクリプタを開きっぱになってるのかな? Zip::Archive.open("outdir/test.zip", Zip::CREATE) do |ar| 1000.times do |count| entry = "target.txt" + sprintf("%04d", count) ar.add_file(entry, "target.txt") end end おんで、修正したスクリプトがこちら。ファイルを1つ追加するのに z