Discuss this help topic in SecureBlackbox Forum
Clouds: Copy folder
To copy a folder use TElDropboxDataStorage.CopyObject() method and pass it the absolute paths to the folder being copied and the folder, which will become a new parent for the copied folder.
C#:
TElDropboxDataStorageObject copied = storage.CopyObject(@"/Parent1/Parent2/Folder",
@"/Parent3/Parent4", null) as TElDropboxDataStorageObject;
If you already have an object of TElDropboxDataStorageObject class, which represents a folder, that you want to copy, then you can use its Copy() method.
C#:
TElDropboxDataStorageObject copied = folder.Copy(@"/Parent3/Parent4", null)
as TElDropboxDataStorageObject;