CopyResource Method
Copies the specified resource.
Syntax
onedrivecontrol.CopyResource FolderId, NewResourceNameRemarks
This method copies the file or folder specified by ResourceId or ResourcePath to the new folder specified by the FolderId parameter.
The NewResourceName parameter is optional. If specified it is a new name for the resource. Set this to empty string to keep the current name.
Copy Notes
Copy operations in OneDrive may not complete right away. After calling this method call GetCopyInfo to get information
about the current copy operation. For instance:
onedrive.ResourceId = MyFileId; onedrive.CopyResource(NewFolderId, ""); do { onedrive.GetCopyInfo(); Console.WriteLine(onedrive.CopyPercentDone); } while (onedrive.CopyStatus != "completed" && onedrive.CopyStatus != "failed")