Does FNC Cloud pack support UploadMode := umAdd ?

In FMX Cloud pack I could choose to have the uploaded file added to the cloud by changing the UploadMode property.

TMSFMXCloudPack.UploadMode := umOverwrite
TMSFMXCloudPack.UploadMode := umAdd;

Is this possible with FNC Cloud Pack?

Hi,

Yes this works in the same way as in TMS FMX Cloud Pack.

Example:

  TMSFNCCloudDropBox1.UploadMode := umOverwrite;
  TMSFNCCloudDropBox1.UploadMode := umAdd;

Ah, I am using the TMSFNCCloudStorageServices component as it is used in the demo project.
This component does not appear to have an UploadMode property.

Do I have to use a separate TMSFNCCloudDropbox1 component to get this capability?

Please note that this is not a common function for all storage services. Therefore it is currently only available in the separate TTMSFNCCloudDropBox component.
The TTMSFNCCloudDropBox component's usage is very similar to the TTMSFNCCloudStorageServices component except that it only provides access to DropBox.

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.