Module: Zip::FileSystem
- Included in:
- File
- Defined in:
- lib/zip/filesystem.rb
Overview
The ZipFileSystem API provides an API for accessing entries in a zip archive that is similar to ruby’s builtin File and Dir classes.
Requiring ‘zip/filesystem’ includes this module in Zip::File making the methods in this module available on Zip::File objects.
Using this API the following example creates a new zip file my.zip
containing a normal entry with the name first.txt
, a directory entry named mydir
and finally another normal entry named second.txt
require 'zip/filesystem'
Zip::File.open("my.zip", Zip::File::CREATE) {
|zipfile|
zipfile.file.open("first.txt", "w") { |f| f.puts "Hello world" }
zipfile.dir.mkdir("mydir")
zipfile.file.open("mydir/second.txt", "w") { |f| f.puts "Hello again" }
}
Reading is as easy as writing, as the following example shows. The example writes the contents of first.txt
from zip archive my.zip
to standard out.
require 'zip/filesystem'
Zip::File.open("my.zip") {
|zipfile|
puts zipfile.file.read("first.txt")
}
Defined Under Namespace
Classes: ZipFileNameMapper, ZipFsDir, ZipFsDirIterator, ZipFsFile
Instance Method Summary collapse
-
#dir ⇒ Object
Returns a ZipFsDir which is much like ruby’s builtin Dir (class) object, except it works on the Zip::File on which this method is invoked.
-
#file ⇒ Object
Returns a ZipFsFile which is much like ruby’s builtin File (class) object, except it works on the Zip::File on which this method is invoked.
-
#initialize ⇒ Object
:nodoc:.
Instance Method Details
#dir ⇒ Object
Returns a ZipFsDir which is much like ruby’s builtin Dir (class) object, except it works on the Zip::File on which this method is invoked
48 49 50 |
# File 'lib/zip/filesystem.rb', line 48 def dir @zip_fs_dir end |
#file ⇒ Object
Returns a ZipFsFile which is much like ruby’s builtin File (class) object, except it works on the Zip::File on which this method is invoked
55 56 57 |
# File 'lib/zip/filesystem.rb', line 55 def file @zip_fs_file end |
#initialize ⇒ Object
:nodoc:
37 38 39 40 41 42 43 |
# File 'lib/zip/filesystem.rb', line 37 def initialize # :nodoc: mapped_zip = ZipFileNameMapper.new(self) @zip_fs_dir = ZipFsDir.new(mapped_zip) @zip_fs_file = ZipFsFile.new(mapped_zip) @zip_fs_dir.file = @zip_fs_file @zip_fs_file.dir = @zip_fs_dir end |