Skip to content

Instantly share code, notes, and snippets.

@ydhydh
ydhydh / unzip.rb
Created May 10, 2012 08:17
unzip
require 'find'
require 'fileutils'
basePath = '/Users/.../Documents/New.Girl.S01E18.720p.HDTV.X264-DIMENSION'
if(!File.exist?(basePath + '/unzip'))
Dir.mkdir(basePath + '/unzip')
else
FileUtils.rm_rf(basePath + '/unzip')
end