Hi all,
I am looking at solutions to merge a split zip into a single zip in ruby
and then extract from it. I am drawing a blank here. Any suggestions are
welcome.
Thanks
···
--
Posted via http://www.ruby-forum.com/.
Hi all,
I am looking at solutions to merge a split zip into a single zip in ruby
and then extract from it. I am drawing a blank here. Any suggestions are
welcome.
Thanks
--
Posted via http://www.ruby-forum.com/.
This kind of task is usually closer to the OS or its shell scripting. Is
it for production code or you just want to test yourself on this task in
Ruby?
In theory multiple IO.binread from different files and multiple
IO.binwrite to the same file (with append) should solve this problem,
but there are side problems to take care of (which are more cumbersome
than the concatenating task itself) like handling arguments.
--
Posted via http://www.ruby-forum.com/.