Discuss this help topic in SecureBlackbox Forum
Clouds: Upload file
To upload the file to the server use TElDropboxDataStorage.CreateObject() method. Pass the absolute path with the name of the file, which you need to create, to this method. The method returns an instance of TElDropboxDataStorageObject class. Use this object to write the data to it, as described in the corresponding how-to.
C#:
TElDropboxDataStorageObject created = storage.CreateObject(@"/path/filename.ext");
Console.WriteLine("{0} (size = {1})", created.Name, created.Size);
created.Release();