The moveItem() operation moves an item from one key (or
directory) to another.
Note
Not all services support moving natively. If this is the case the adapter will simulate the operation, fetching the item, storing it under the target path, then deleting the original file.
Example 101. Moving an item
<?php
$storage->moveItem(
'/my/remote/path/picture.jpg',
'/anothor/remote/dir/newpicture.jpg'
);




