Method: CloudFS::RestAdapter#move_file

Defined in:
lib/cloudfs/rest_adapter.rb

#move_file(path, destination, name, exists: 'RENAME') ⇒ Hash

Move file to specified destination folder



448
449
450
# File 'lib/cloudfs/rest_adapter.rb', line 448

def move_file(path, destination, name, exists: 'RENAME')
  move(Constants::ENDPOINT_FILES, path, destination, name, exists: exists)
end