1

Simple I think but can't seem to find something that works. Using either rubyzip or zippy.

I need to extract "path/to/my/file.zip to "path/to/my/file"

Documentation is quite slim for either gems.

whyvez
  • 303
  • 3
  • 12

1 Answers1

-1

Why don't you just call the gunzip process?

system("gunzip -S '.zip' file.jpeg.zip")

No need to use/install any gem.

Maurício Linhares
  • 39,901
  • 14
  • 121
  • 158