Method: GenericSpreadsheet#remove_tmp
- Defined in:
- lib/roo/generic_spreadsheet.rb
#remove_tmp ⇒ Object
recursively removes the current temporary directory this is only needed if you work with zipped files or files via the web
305 306 307 308 309 |
# File 'lib/roo/generic_spreadsheet.rb', line 305 def remove_tmp if File.exists?(@tmpdir) FileUtils::rm_r(@tmpdir) end end |