Cloud Storage Integrator - Online Help
Cloud Storage Integrator
Questions / Feedback?

CopyResource Method

Copies the specified resource.

Syntax

void __fastcall CopyResource(String FolderId, String NewResourceName);

Remarks

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")

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 1.0.6240.0