タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

CoreDataとNSMergePolicyに関するabachibiのブックマーク (1)

  • 日々是笑心

    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

    日々是笑心
  • 1