create_folder()
Create new folder
create_folder()
This method will create a new folder in the cloud.
Parameters
$new_name
string
The name of the folder to be created.
$parent_id
string
ID of the folder where the new folder should be created.
Return
$node
CachedNode
The cached object for the new created folder.
Usage
WPCP_ONEDRIVE_API::set_account_by_id('8c9bacda0-d8d8-4b22-b634-7b5281687575');
WPCP_ONEDRIVE_API::set_drive_by_id('b!DlaHWskCed_MIid3KpJH5Lbatf9HsdXBAZH5YcvPAbMhJUKzTJyzgvXZYpBS');
// Create a new folder
$node = WPCP_ONEDRIVE_API::create_folder('Documents', '01EXLSWHRCD7RDL3HX65BK5X3ULXLWSICN');Parameters
$new_name
string
The name of the folder to be created.
$parent_id
string
ID of the folder where the new folder should be created.
Return
$node
CachedNode
The cached object for the new created folder.
Usage
WPCP_GDRIVE_API::set_account_by_id('201096615285735764133')
$node = WPCP_GDRIVE_API::get_folder('1FCYkOJb150I8nl8DE92YIXWaB0J7VOk5');
$node->get_name();
foreach ($node->get_children() as $id => $entry_node) {
$entry_node->get_name();
}Parameters
$new_name
string
The name of the folder to be created.
$target_folder_path
string
The folder path where the new folder should be created
($params)
array
Additional Parameters. Use ['autorename' => true] to automatically rename the folder if a folder with the same name already exists.
Return
$entry
Entry
The object for the new folder.
Usage
Last updated