1
vote
1answer
53 views
How to close a ZipFile
I'm passing a dynamic zip file location to a def from a database. I want to unzip the file to a temp location, extract the xml report file inside, apply an xslt stylesheet, copy it …
0
votes
2answers
203 views
Opening a multipart/form-data ZIP file with rubyzip
I want to extract the files within a ZIP file I uploaded to my Rails app. The files within the ZIP file are going to be stored in the database.
I want to open the ZIP file in my a …
1
vote
2answers
84 views
Read file comments from a zip file in Ruby
I am doing Python challenge in Ruby. I need to read the file contents and comments from a Zip file. The content is no problem with the RubyZip gem but I am unable to get the commen …
1
vote
2answers
46 views
How can I copy a directory inside a zip archive to a second zip archive using rubyzip?
I have a .zip archive containing several directories. Using the rubyzip gem I would like to reach into the .zip archive, copy a specified directory (and its contents) and move the …
1
vote
3answers
531 views
How to unzip password protected file via Ruby
I'd like to unzip an encrypted/password protected file via a Ruby script without dropping down to a system call. I currently use the rubyzip library to unzip files but don't see an …
0
votes
2answers
351 views
How do I get a zipped file’s content using the rubyzip library?
I'm trying to extract an uploaded zip file and store its contents in the database, one entry per file. The rubyzip library has nearly no useful documentation.
There is an assets …
