RubyZipFIleSystem - help with simple task

N

Nathan Loyer

I am new to Ruby, but am doing my best. I have a zip file that I'm
trying to open, go to directory "word" and read one of the files out.
Here is what I have so far:

require 'rubygems'
require 'zip/zipfilesystem'

Zip::ZipFile.open("Evelyn Attwood.docx.zip") {
|zipfile|
zipfile.dir.open("word")
puts zipfile.file.read("document.xml")
}

Simple, but I get an error:

ruby docxreader.rb
/Library/Ruby/Gems/1.8/gems/rubyzip-0.9.1/lib/zip/zipfilesystem.rb:371:in
`stat': No such file or directory - word (Errno::ENOENT)
from
/Library/Ruby/Gems/1.8/gems/rubyzip-0.9.1/lib/zip/zipfilesystem.rb:463:in
`foreach'
from
/Library/Ruby/Gems/1.8/gems/rubyzip-0.9.1/lib/zip/zipfilesystem.rb:458:in
`entries'
from
/Library/Ruby/Gems/1.8/gems/rubyzip-0.9.1/lib/zip/zipfilesystem.rb:430:in
`new'
from
/Library/Ruby/Gems/1.8/gems/rubyzip-0.9.1/lib/zip/zipfilesystem.rb:434:in
`open'
from docxreader.rb:6
from /Library/Ruby/Gems/1.8/gems/rubyzip-0.9.1/lib/zip/zip.rb:1382:in
`open'
from docxreader.rb:4


But there is certainly such a file. What am I doing wrong?

Much thanks,

Nathan
 
M

Maciej Tomaka

Probably this archive does not contain the folder.
Please try out:

require 'rubygems'
require 'zip/zipfilesystem'

Zip::ZipFile.open("Evelyn Attwood.docx.zip") do |zipfile|
puts zipfile.file.read('word/document.xml')
end
 
N

Nathan Loyer

Maciej said:
Probably this archive does not contain the folder.
Please try out:

require 'rubygems'
require 'zip/zipfilesystem'

Zip::ZipFile.open("Evelyn Attwood.docx.zip") do |zipfile|
puts zipfile.file.read('word/document.xml')
end

That works! Thank you. Can you explain why though? When I unzip the
archive, I see the folder. Is there a difference between a "directory"
and a folder in a zip file?
 
M

Maciej Tomaka

Nathan said:
That works! Thank you. Can you explain why though? When I unzip the
archive, I see the folder. Is there a difference between a "directory"
and a folder in a zip file?
There is no folder/directory difference - it is the same thing. But you
may have it included in file or not.

Example:

$ zip document.zip document/sample.xml
adding: document/sample.xml (stored 0%)

$ unzip -l document.zip
Archive: document.zip
Length Date Time Name
-------- ---- ---- ----
0 08-07-08 13:39 document/
0 08-07-08 13:39 document/sample.xml
-------- -------
0 2 files

But if you create it using file-roller you don't have directory
included:

$ unzip -l document.zip
Archive: document.zip
Length Date Time Name
-------- ---- ---- ----
0 08-07-08 13:39 document/sample.xml
-------- -------
0 1 file

Thats all. :)

Best Regards

Maciej
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top