Method: CloudFS::RestAdapter#copy_file
- Defined in:
- lib/cloudfs/rest_adapter.rb
#copy_file(path, destination, name, exists: 'RENAME') ⇒ Hash
Copy file to specified destination folder
380 381 382 |
# File 'lib/cloudfs/rest_adapter.rb', line 380
def copy_file(path, destination, name, exists: 'RENAME')
copy(Constants::ENDPOINT_FILES, path, destination, name, exists: exists)
end
|