mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Add an implementation of copy method to copy files between containers.
This commit is contained in:
parent
537f4177e6
commit
cb2fb6d3ed
1 changed files with 7 additions and 0 deletions
|
@ -29,6 +29,13 @@ module Fog
|
|||
@directory
|
||||
end
|
||||
|
||||
def copy(target_directory_key, target_file_key)
|
||||
requires :directory, :key
|
||||
target_directory = connection.directories.new(:key => target_directory_key)
|
||||
connection.put_object(target_directory_key, target_file_key, nil, {'X-Copy-From' => "/#{directory.key}/#{key}" })
|
||||
target_directory.files.get(target_file_key)
|
||||
end
|
||||
|
||||
def destroy
|
||||
requires :directory, :key
|
||||
connection.delete_object(directory.key, key)
|
||||
|
|
Loading…
Reference in a new issue