Method: FileManager.backup
- Defined in:
- lib/pandoras_box/file_manager.rb
.backup(target, backup_dest) ⇒ Object
109 110 111 112 113 114 115 |
# File 'lib/pandoras_box/file_manager.rb', line 109 def backup(target, backup_dest) if File.exists?(backup_dest) FileUtils.rm_rf(backup_dest) end FileUtils.copy(target, backup_dest) end |