move()
Move files and folders
move()
This method will move items to a new location.
Parameters
$entry_ids
array
ID of the entries that should be moved.
$target_id
string
ID of the folder where the entry should be moved to.
Return
$nodes
CachedNode[]
An array of objects for the moved files/folders.
Usage
WPCP_ONEDRIVE_API::set_account_by_id('8c9bacda0-d8d8-4b22-b634-7b5281687575');
WPCP_ONEDRIVE_API::set_drive_by_id('b!DlaHWskCed_MIid3KpJH5Lbatf9HsdXBAZH5YcvPAbMhJUKzTJyzgvXZYpBS');
$entry_ids = [
'01EXLSWHWMQZNDMLRG7NFIWAVYCFJAXP2R',
'01EXLSWHW3APNASPERAVGJEAVQAMUNIKF6'
];
$nodes = WPCP_ONEDRIVE_API::move($entry_ids, '01EXLSWHRCD7RDL3HX65BK5X3ULXLWSICN');Parameters
$entry_ids
array
ID of the entries that should be moved.
$target_id
string
ID of the folder where the entry should be moved to.
Return
$nodes
CachedNode[]
An array of objects for the moved files/folders.
Usage
WPCP_GDRIVE_API::set_account_by_id('201096615285735764133')
$entry_ids = [
'1wzWlDMsZkA4N5yEEAmMigp52u7M0Lk_7',
'1w7wpGF9jo4ZDmFaXxoBRDbCnotCmypJZ'
];
$nodes = WPCP_GDRIVE_API::move($entry_ids, '1FCYkOJb150I8nl8DE92YIXWaB0J7VOk5');Parameters
$request
array
An array with 'path' keys. Path can both be an ID or a actual path.
Return
$entries
Entry[]
An array of objects for the moved files/folders.
Usage
WPCP_DROPBOX_API::set_account_by_id('dbid:AADSy6JxzbgqCs4A43CAAAfO9xvZwpcsLU');
$request = ['entries' => []];
$request['entries'][] = ['from_path' => '/Homework/math', 'to_path' => '/Homework/algebra'];
$request['entries'][] = ['from_path' => '/Documents/a picture.jpg', 'to_path' => '/Documents/just a picture.jpg'];
$entries = WPCP_DROPBOX_API::move($request);Parameters
$id
string
ID of the entry that should be moved.
$new_parent_id
string
ID of the folder where the entry should be moved to.
$is_dir
bool
Is the entry a folder or a file?
Return
$node
CachedNode
The cached object for the moved file/folder.
Usage
WPCP_BOX_API::set_account_by_id('29232154182');
$node = WPCP_BOX_API::move('51142665', '511426724354', false);Last updated