rubyzip的使用(原)

阅读更多
大家可以它的官方网站http://rubyforge.org/projects/rubyzip/去下载,目前最新的版本是0.9.1,下面我们来看两个例子:
require 'zip/zip'

  Zip::ZipFile.open("test.zip", Zip::ZipFile::CREATE) {
   |zipfile|
    zipfile.get_output_stream("mathsfan.txt") { |f| f.puts "http://blog.sina.com.cn/msdn/" }
  }

这个例子比较简单,这里就不多说了,下面来看另一个:
require 'zip/zip'
require "fileutils.rb"
unzip_dir="./"

Zip::ZipFile::open("mathsfan.zip") {
|zf| zf.each { |e|
fpath = File.join(unzip_dir, e.name)
FileUtils.mkdir_p(File.dirname(fpath))
zf.extract(e, fpath) } }

这里要注意的是一定要require 'fileutils.rb'否则会出现错误:
uninitialized constant FileUtils (NameError)

这个程序表示在当前目录下解压缩mathsfan.zip压缩文件,希望对你有所帮助:)

你可能感兴趣的:(F#,Blog)