Method: CloudFS::RestAdapter#copy_folder
- Defined in:
- lib/cloudfs/rest_adapter.rb
#copy_folder(path, destination, name, exists: 'FAIL') ⇒ Hash
Copy folder to specified destination folder
363 364 365 |
# File 'lib/cloudfs/rest_adapter.rb', line 363
def copy_folder(path, destination, name, exists: 'FAIL')
copy(Constants::ENDPOINT_FOLDERS, path, destination, name, exists: exists)
end
|